enableExceptionService static method

Future<void> enableExceptionService(
  1. bool parameter
)

enableExceptionService

Implementation

static Future<void> enableExceptionService(bool parameter) async {
  try {
    _channel.invokeMethod('enableExceptionService', {'Enable': parameter});
  } catch (e, stack) {
    MzanalyticsLog.p(e.toString() + stack.toString());
  }
}