log method

void log(
  1. Object msg
)

Implementation

void log(Object msg) {
  if (_logger != null) {
    _logger!(msg);
  }
}