getObjectId static method

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

static String? getObjectId(Object object) {
  return _getObjectId(object);
}