sendException method

  1. @override
Future<void> sendException(
  1. String description, {
  2. bool? fatal,
})
override

In order to avoid sending any personally identifying information, the description field must not contain the exception message. In addition, only the first 100 chars of the description will be sent.

Implementation

@override
Future<void> sendException(String description, {bool? fatal}) =>
    _log('exception', {'description': description, 'fatal': fatal});