recordError method

Future<void> recordError({
  1. required String exception,
  2. required String information,
  3. required String reason,
  4. bool fatal = false,
  5. String? buildId,
  6. String? stackTraceElements,
})

Submits a Crashlytics report of a caught error.

Implementation

Future<void> recordError({
required String exception,
required String information,
required String reason,
bool fatal = false,
String? buildId,
String? stackTraceElements,
// List<Map<String, String>>? stackTraceElements,
  }) {
throw UnimplementedError('recordError() is not implemented');
  }