reportError abstract method

Future<void> reportError({
  1. String? message,
  2. AppMetricaErrorDescription? errorDescription,
})

Sends an error with the message message and the description ErrorDescription. If there is no errorDescription description, the current stacktrace will be added automatically.

Implementation

Future<void> reportError({
  String? message,
  AppMetricaErrorDescription? errorDescription
});