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. List<Map<String, 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,
  List<Map<String, String>>? stackTraceElements,
}) {
  throw UnimplementedError('recordError() is not implemented');
}