uniqKey method

String uniqKey(
  1. String key
)
inherited

Returns a key namespaced to this object's namedId.

Useful for storing per-instance data in a flat map without collisions.

Implementation

String uniqKey(String key) => '$_namedId.$key';