e method

void e(
  1. dynamic msg, {
  2. String? title,
  3. bool? format,
})

print error msg

Implementation

void e(dynamic msg, {String? title, bool? format}) =>
    _log(msg, LogMode.error, title, format);