Dart Documentationchrome.usbRecipient

Recipient class

class Recipient extends ChromeEnum {
 static const Recipient DEVICE = const Recipient._('device');
 static const Recipient _INTERFACE = const Recipient._('_interface');
 static const Recipient ENDPOINT = const Recipient._('endpoint');
 static const Recipient OTHER = const Recipient._('other');

 static const List<Recipient> VALUES = const[DEVICE, _INTERFACE, ENDPOINT, OTHER];

 const Recipient._(String str): super(str);
}

Extends

ChromeEnum > Recipient

Static Properties

const Recipient DEVICE #

static const Recipient DEVICE = const Recipient._('device')

const Recipient ENDPOINT #

static const Recipient ENDPOINT = const Recipient._('endpoint')

const Recipient OTHER #

static const Recipient OTHER = const Recipient._('other')

const List<Recipient> VALUES #

static const List<Recipient> VALUES = const[DEVICE, _INTERFACE, ENDPOINT, OTHER]

Properties

final String value #

inherited from ChromeEnum
final String value

Methods

String toString() #

inherited from ChromeEnum

Returns a string representation of this object.

docs inherited from Object
String toString() => value;