TransferType class
class TransferType extends ChromeEnum { static const TransferType CONTROL = const TransferType._('control'); static const TransferType INTERRUPT = const TransferType._('interrupt'); static const TransferType ISOCHRONOUS = const TransferType._('isochronous'); static const TransferType BULK = const TransferType._('bulk'); static const List<TransferType> VALUES = const[CONTROL, INTERRUPT, ISOCHRONOUS, BULK]; const TransferType._(String str): super(str); }
Extends
ChromeEnum > TransferType
Static Properties
const TransferType BULK #
static const TransferType BULK = const TransferType._('bulk')
const TransferType CONTROL #
static const TransferType CONTROL = const TransferType._('control')
const TransferType INTERRUPT #
static const TransferType INTERRUPT = const TransferType._('interrupt')
const TransferType ISOCHRONOUS #
static const TransferType ISOCHRONOUS = const TransferType._('isochronous')
const List<TransferType> VALUES #
static const List<TransferType> VALUES = const[CONTROL, INTERRUPT, ISOCHRONOUS, BULK]
Properties
Methods
String toString() #
inherited from ChromeEnum
Returns a string representation of this object.
docs inherited from Object
String toString() => value;