onErrorWithParameters static method
void
onErrorWithParameters()
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);
}