info static method

void info(
  1. String message, {
  2. String tag = "--------------------> INFO <--------------------",
})

Implementation

static void info(String message,
    {String tag = "--------------------> INFO <--------------------"}) {
  if (kDebugMode) {
    log(tag + "\n" + message);
  }
}