e static method

dynamic e(
  1. String message, {
  2. String tag = _DEFAULT_TAG_PREFIX,
})

Print error logs

Implementation

static e(String message, {String tag = _DEFAULT_TAG_PREFIX}) {
  _log(ERROR, tag, message);
}