stopSpeakerDeviceTest method
Stop speaker test (Support for macOS and Windows platforms)
Return:
0
: success; negative number: failure
Implementation
Future<int?> stopSpeakerDeviceTest() async {
var result = await _channel.invokeMethod('stopSpeakerDeviceTest');
return V2TXLiveFlutterResult.intValue(result);
}