describeIdentity function

String describeIdentity(
  1. Object object
)

A short identity string: the object's runtime type plus a hex identity hash.

Implementation

String describeIdentity(Object object) =>
    '${object.runtimeType}#${identityHashCode(object).toRadixString(16)}';