DebugUtils.showLog constructor

DebugUtils.showLog(
  1. String value, {
  2. String? prefix,
  3. dynamic error,
})

Implementation

DebugUtils.showLog(String value, {String? prefix, error}) {
  if (kDebugMode) {
    log("${prefix ?? "Debug_Print"} >> $value", error: error);
  }
}