stopStreamSession method
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;
}