transferOut method

Future<USBOutTransferResult> transferOut(
  1. dynamic device,
  2. int endpointNumber,
  3. dynamic data
)

Sends a bulk or interrupt transfer to the specified endpoint of the device. Returns the Future resolved with the transfer status and the number of bytes written.

Implementation

Future<USBOutTransferResult> transferOut(
    dynamic device, int endpointNumber, dynamic data) {
  throw UnimplementedError('transferOut() has not been implemented.');
}