e static method

void e({
  1. String tag = "",
  2. String? msg,
  3. Exception? error,
})

Implementation

static void e({String tag = "", String? msg, Exception? error}) {
  if (debugError) {
    print("$tag $msg ${error?.toString()}");
  }
}