CrashlyticsPrinter constructor

CrashlyticsPrinter({
  1. required Level errorLevel,
  2. required CrashlyticsErrorCallback onError,
  3. CrashlyticsLogCallback? onLog,
  4. String? loggerName,
  5. bool printCaller = true,
  6. bool printFunctionName = true,
  7. bool printLocation = true,
  8. bool printEmojis = true,
  9. bool printLabels = true,
  10. Map<Level, String> levelEmojis = defaultLevelEmojis,
  11. Map<Level, String> levelLabels = defaultLevelLabels,
})

Implementation

CrashlyticsPrinter({
  required this.errorLevel,
  required this.onError,
  this.onLog,
  super.loggerName,
  super.printCaller,
  super.printFunctionName,
  super.printLocation,
  super.printEmojis,
  super.printLabels,
  super.levelEmojis,
  super.levelLabels,
}) : super(
        colors: false,
        printTime: false,
        stackTraceMethodCount: null,
        stackTracePrefix: '',
      );