instance property

Logger instance

Implementation

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

Implementation

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