printfDebug function

void printfDebug(
  1. Object? data, {
  2. String? tag,
  3. PrintfStyle? style,
})

Implementation

void printfDebug(Object? data, {String? tag, PrintfStyle? style}) =>
    printf(data, tag: tag, level: PrintfLevel.debug, style: style);