stopBackgroundMonitoring method

  1. @override
Future<bool> stopBackgroundMonitoring()
override

Implementation

@override
Future<bool> stopBackgroundMonitoring() async {
  final result = await methodChannel.invokeMethod<bool>('stopBackgroundMonitoring');
  return result ?? false;
}