custom static method
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!);
}