instance property

HamugaId get instance

Access the singleton instance.

Returns the singleton instance of HamugaId. The instance is created lazily on first access.

Implementation

static HamugaId get instance {
  _instance ??= HamugaId._internal();
  return _instance!;
}