e static method

bool e(
  1. Object? error, {
  2. bool showPath = true,
  3. bool onlyDebug = true,
  4. int lines = 0,
  5. int position = 0,
  6. Zone? zone,
  7. bool split = true,
  8. bool showTag = true,
  9. LogBgColor? bgColor,
})

Implementation

static bool e(
  Object? error, {
  bool showPath = true,
  bool onlyDebug = true,
  int lines = 0,
  int position = 0,
  Zone? zone,
  bool split = true,
  bool showTag = true,
  LogBgColor? bgColor,
}) {
  return _log(
    LogColor.error,
    error,
    showPath,
    onlyDebug,
    zone,
    lines: lines,
    position: ++position,
    split: split,
    showTag: showTag,
    bgColor: bgColor,
  );
}