isBackgroundPollingRunning method
Whether the background poller process is currently running.
Implementation
@override
Future<bool> isBackgroundPollingRunning() async {
final result = await methodChannel.invokeMethod<bool>(
'isBackgroundPollingRunning',
);
return result ?? false;
}