DebugUtils.showPrint constructor

DebugUtils.showPrint(
  1. String value, {
  2. String? prefix,
})

Implementation

DebugUtils.showPrint(String value, {String? prefix}) {
  if (kDebugMode) {
    print("${prefix ?? "Debug_Print"} >> $value");
  }
}