transferInfo property

GenericTransferInfo get transferInfo

Transfer parameters. The transfer length or data buffer specified in this parameter block is split along packetLength boundaries to form the individual packets of the transfer.

Implementation

GenericTransferInfo get transferInfo =>
    GenericTransferInfo.fromJS(_wrapped.transferInfo);
set transferInfo (GenericTransferInfo v)

Implementation

set transferInfo(GenericTransferInfo v) {
  _wrapped.transferInfo = v.toJS;
}