stopStreamSession method

  1. @override
Future<bool> stopStreamSession(
  1. String? deviceUUID
)
override

Implementation

@override
Future<bool> stopStreamSession(String? deviceUUID) async {
  final args = <String, dynamic>{};
  if (deviceUUID != null) {
    args['deviceUUID'] = deviceUUID;
  }
  final ok = await methodChannel.invokeMethod<bool>(
    'stopStreamSession',
    args,
  );
  return ok ?? false;
}