stopEventMonitor method

  1. @override
Future<Map<String, int>> stopEventMonitor()
override

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;

}