info static method

void info(
  1. String message
)

Implementation

static void info(String message) {
  if (kDebugMode) {
    debugPrint('ℹ️ [INFO] $message');
  }
}