trackExceptionWithNameAndMessage static method

Future<void> trackExceptionWithNameAndMessage(
  1. String exceptionName,
  2. String exceptionMessage
)

Implementation

static Future<void> trackExceptionWithNameAndMessage(
    String exceptionName, String exceptionMessage) {
  return _channel.invokeMethod('trackExceptionWithNameAndMessage',
      <dynamic, dynamic>{"name": exceptionName, "message": exceptionMessage});
}