i static method

dynamic i(
  1. String msg, {
  2. String tag = 'fplayer',
})

log msg with FLogLevel.Info level

Implementation

static i(String msg, {String tag = 'fplayer'}) {
  log(FLogLevel.Info, msg, tag);
}