wtf static method

void wtf(
  1. dynamic message, [
  2. String? tag
])

WTF (What a Terrible Failure) level logging - for critical failures

Implementation

static void wtf(dynamic message, [String? tag]) {
  _logWithStyle(message, 'WTF', tag);
}