info static method

void info(
  1. Object? object
)

Implementation

static void info(Object? object) {
  final location = _getLocation();
  developer.log(
      "${DateTime.now().toIso8601String()} ${chalk.grey("INFO: $object")} ${chalk.grey('Location: $location')}");
}