controlTransferIn method

Future<USBInTransferResult> controlTransferIn(
  1. dynamic device,
  2. SetupParam setup, {
  3. int? length,
})

Waits for a specified control transfer from the device. Returns a Future resolved with the transfer data and status.

Implementation

Future<USBInTransferResult> controlTransferIn(
    dynamic device, SetupParam setup,
    {int? length}) {
  throw UnimplementedError('controlTransferIn() has not been implemented.');
}