reportErrorWithGroup static method

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

Sends an error message with its own identifier groupId. Errors in reports are grouped by it.

Implementation

static Future<void> reportErrorWithGroup(String groupId,
    {AppMetricaErrorDescription? errorDescription, String? message}) =>
    _appMetrica.reportErrorWithGroup(
        groupId, errorDescription?.toPigeon(), message);