isBackgroundServiceRunning method

  1. @override
Future<bool> isBackgroundServiceRunning(
  1. ServiceType type
)
override

Implementation

@override
Future<bool> isBackgroundServiceRunning(
  ServiceType type,
) async {
  return await methodChannel.invokeMethod(
    'isBackgroundServiceRunning',
    {
      'type': type.name,
    },
  );
}