stopService static method

Future<bool> stopService(
  1. ServiceType type
)

Implementation

static Future<bool> stopService(ServiceType type) async {
  if (!isAndroid) {
    return false;
  }
  return StreamVideoFlutterPlatform.instance.stopBackgroundService(type);
}