wtf static method

Future<void> wtf({
  1. String? tag,
  2. required String msg,
  3. int stackDepth = 1000,
  4. int logType = 2,
  5. bool writeFile = false,
})

Implementation

static Future<void> wtf({String? tag, required String msg, int stackDepth = 1000, int logType = 2, bool writeFile = false}) async {
  await log('wtf', tag, msg, stackDepth, logType, writeFile);
}