trackError static method

Future<void> trackError(
  1. Map<String, String> userInfo,
  2. String domain,
  3. int code
)

Implementation

static Future<void> trackError(
    Map<String, String> userInfo, String domain, int code) async {
  await _channel.invokeMethod(
      'trackError', {"userInfo": userInfo, "domain": domain, "code": code});
}