instance property

HeaderModel instance

Implementation

static HeaderModel get instance {
  if (_disposed) {
    _instance = HeaderModel();
  } else {
    _instance ??= HeaderModel();
  }

  return _instance!;
}