transferIn method

Future<USBInTransferResult> transferIn(
  1. dynamic device,
  2. int endpointNumber,
  3. int length
)

Waits for a bulk or interrupt transfer from the device on a specified endpoint. Returns the Future resolved with the transfer data and status.

Implementation

Future<USBInTransferResult> transferIn(
    dynamic device, int endpointNumber, int length) {
  throw UnimplementedError('transferIn() has not been implemented.');
}