getObjectId static method

  1. @Since('3.2')
String? getObjectId(
  1. Object object
)

Returns a String token representing the ID of object.

Returns null if the running Dart environment does not support the service protocol.

Implementation

@Since('3.2')
static String? getObjectId(Object object) {
  return _getObjectId(object);
}