updateService static method
Implementation
static Future<bool> updateService(
NotificationPayload options,
ServiceType type,
) async {
if (!isAndroid) {
return false;
}
return StreamVideoFlutterPlatform.instance.updateBackgroundService(
payload: options,
type: type,
);
}