stopEventMonitor method
Implementation
@override
Future<Map<String, int>> stopEventMonitor() async {
final data = await methodChannel.invokeMethod(MethodChannelString.stopEventMonitor);
final Map<String, int> result = Map<String, int>.from(data as Map);
return result;
}