getUSBAddress method
Implementation
@override
Future<String?> getUSBAddress(int productId, int vendorId) async {
final version = await methodChannel.invokeMethod('getUSBAddress', {
'productId': productId,
'vendorId': vendorId,
});
return version;
}