updateService method
Implementation
@override
Future<bool> updateService(NotificationPayload payload) async {
if (await isServiceRunning == true) {
return await methodChannel.invokeMethod(
'updateService',
payload.toJson(),
);
}
return false;
}