instance property

EzConfig get instance

Getter

Implementation

static EzConfig get instance {
  if (_instance == null) {
    throw Exception("EzConfig has not been initialized!");
  }
  return _instance!;
}