isBackgroundServiceRunning method
Implementation
@override
Future<bool> isBackgroundServiceRunning(
ServiceType type, {
String? callCid,
}) async {
return await methodChannel.invokeMethod(
'isBackgroundServiceRunning',
{
'type': type.name,
if (callCid != null) 'callCid': callCid,
},
);
}