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)
const Float RIGHT #
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);