showLogs static method

void showLogs(
  1. String tag,
  2. String message
)

Implementation

static void showLogs(String tag, String message) {
  if (kDebugMode) {
    log("$tag: $message");
  }
}