custom static method

void custom(
  1. Object object, {
  2. int foreColor = 0,
  3. int? backColor,
  4. String? tag,
})

custom log

Implementation

static void custom(
  Object object, {
  /// foreground 0-255
  int foreColor = 0,
  /// background 0-255
  int? backColor,
  String? tag,
}) {
  defaultLogger.custom(object, foreColor: foreColor, backColor: backColor, tag: tag!);
}