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
Properties
Methods
String toString() #
inherited from ChromeEnum
Returns a string representation of this object.
docs inherited from Object
String toString() => value;