custom static method

void custom(
  1. Object? object,
  2. String color
)

Implementation

static void custom(Object? object, String color) {
  final location = _getLocation();
  developer.log(
      "${DateTime.now().toIso8601String()} ${chalk.hex(color)("CUSTOM: $object")} ${chalk.grey('Location: $location')}");
}