isochronousTransferIn method
Returns a Future that resolves when time sensitive information has been transmitted to the USB device.
Implementation
@override
Future<USBIsochronousInTransferResult> isochronousTransferIn(
dynamic device, int endpointNumber, List<int> packetLengths) {
return methodChannel.invokeMethod<bool>('isochronousTransferIn', [
device,
endpointNumber,
packetLengths
]).then<USBIsochronousInTransferResult>((dynamic result) => result);
}