ObjectTag.of constructor

ObjectTag.of(
  1. Object? object
)

Implementation

factory ObjectTag.of(Object? object) =>
    object is ObjectTag ? object : ObjectTag._(object ?? UnitId.nextId());