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