logFatal abstract method

void logFatal(
  1. String message, [
  2. Map<String, String>? extras
])

Use logFatal to produce a log that represents an irreparable situation. This level of logs should require your total attention. In an ideal world, you should never see this type of logs. message is the most important piece of the log, and extras are attached information that can be added to expand the meaning and context of your log.

Implementation

void logFatal(String message, [Map<String, String>? extras]);