Overflow<String>
class
Enum for the overflow property.
class Overflow<String> extends Enum<String> {
const Overflow(String type) : super (type);
static const Overflow VISIBLE = const Overflow(Style._OVERFLOW_VISIBLE);
static const Overflow HIDDEN = const Overflow(Style._OVERFLOW_HIDDEN);
static const Overflow SCROLL = const Overflow(Style._OVERFLOW_SCROLL);
static const Overflow AUTO = const Overflow(Style._OVERFLOW_AUTO);
}
Extends
Enum<String> > Overflow<String>
Static Properties
static const Overflow AUTO = const Overflow(Style._OVERFLOW_AUTO)
const Overflow HIDDEN #
static const Overflow HIDDEN = const Overflow(Style._OVERFLOW_HIDDEN)
static const Overflow SCROLL = const Overflow(Style._OVERFLOW_SCROLL)
const Overflow VISIBLE #
static const Overflow VISIBLE = const Overflow(Style._OVERFLOW_VISIBLE)
Constructors
const Overflow(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 Overflow(String type) : super (type);