instance property

Logger get instance

Implementation

static Logger get instance {
  _instance ??= Logger();
  return _instance!;
}
set instance (Logger newInstance)

Implementation

static set instance(Logger newInstance) {
  _instance = newInstance;
}