API Reference 0.3.24dart_web_toolkit_utilFloat<String>

Float<String> class

Enum for the float property.

class Float<String> extends Enum<String> {

 const Float(String type) : super (type);

 static const Float LEFT = const Float(Style._FLOAT_LEFT);
 static const Float RIGHT = const Float(Style._FLOAT_RIGHT);
 static const Float NONE = const Float(Style._FLOAT_NONE);
}

Extends

Enum<String> > Float<String>

Static Properties

const Float LEFT #

static const Float LEFT = const Float(Style._FLOAT_LEFT)

const Float NONE #

static const Float NONE = const Float(Style._FLOAT_NONE)
static const Float RIGHT = const Float(Style._FLOAT_RIGHT)

Constructors

const Float(String type) #

Creates a new Object instance.

Object instances have no meaningful state, and are only useful through their identity. An Object instance is equal to itself only.

docs inherited from Object
const Float(String type) : super (type);

Properties

final T value #

inherited from Enum
T get value => _value;