e static method

void e(
  1. String tag,
  2. dynamic message
)

Implementation

static void e(String tag,dynamic message) {
  if(_showLog) {
    logger.e({'TAG': tag, 'Type': 'error', 'exception': e});
  }
}