onErrorWithParameters static method

void onErrorWithParameters(
  1. String errorId,
  2. String message,
  3. String errorClass,
  4. Map<String, String> parameters,
)

Records an app exception with parameters.

Commonly used to catch unhandled exceptions. Specifies error name using errorId, and error message in message. Specifies exception attributes like exception name and exception reason in errorClass. Specify custom parameters associated with the exception.

Implementation

static void onErrorWithParameters(String errorId, String message,
    String errorClass, Map<String, String> parameters) {
  flurryAgent?.onErrorWithParameters(
      errorId, message, errorClass, parameters);
}