StopBit class
class StopBit extends ChromeEnum {
static const StopBit ONESTOPBIT = const StopBit._('onestopbit');
static const StopBit TWOSTOPBIT = const StopBit._('twostopbit');
static const List<StopBit> VALUES = const[ONESTOPBIT, TWOSTOPBIT];
const StopBit._(String str): super(str);
}
Extends
ChromeEnum > StopBit
Static Properties
Properties
Methods
String toString() #
inherited from ChromeEnum
Returns a string representation of this object.
docs inherited from Object
String toString() => value;