controlTransferOut method

Future<USBOutTransferResult> controlTransferOut(
  1. dynamic device,
  2. SetupParam setup, {
  3. dynamic data,
})

Sends a specified control transfer to the device. Returns the Future resolved with the transfer status and the number of bytes written

Implementation

Future<USBOutTransferResult> controlTransferOut(
    dynamic device, SetupParam setup,
    {dynamic data}) {
  throw UnimplementedError('controlTransferOut() has not been implemented.');
}