error static method

void error(
  1. String msg
)

Implementation

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