getInstance static method

LoggerImpl getInstance()

Get the singleton instance of the logger

Implementation

static LoggerImpl getInstance() {
  _instance ??= LoggerImpl._();
  return _instance!;
}