stopBackgroundService method

Future<bool> stopBackgroundService()

Implementation

Future<bool> stopBackgroundService() async {
  final success = await Untitled.Untitled_Constants.methodChannel.invokeMethod(UntitledStrings.stopBackgroundServiceMethodName);
  if (success is bool) {
    return success;
  }
  return false;
}