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