instance property

Model get instance

Get the singleton instance for the model class.

Implementation

static Model get instance {
  _instance ??= Model._();
  return _instance!;
}