Dart Documentationchrome.serialStopBit

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

const StopBit ONESTOPBIT #

static const StopBit ONESTOPBIT = const StopBit._('onestopbit')

const StopBit TWOSTOPBIT #

static const StopBit TWOSTOPBIT = const StopBit._('twostopbit')

const List<StopBit> VALUES #

static const List<StopBit> VALUES = const[ONESTOPBIT, TWOSTOPBIT]

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;