log static method

void log(
  1. String msg
)

Implementation

static void log(String msg) {
  assert(() {
    if (!_enabled) return true;
    print('[FLUI Dynamic] $msg');
    return true;
  }());
}