AnchorAlign enum

Relative alignment for a Marker.builder widget relative to the center of its bounding box defined by its Marker.height & Marker.width

Inheritance

Constructors

AnchorAlign(int _x, int _y)
const

Values

topLeft → const AnchorAlign
const AnchorAlign(-1, 1)
topRight → const AnchorAlign
const AnchorAlign(1, 1)
bottomLeft → const AnchorAlign
const AnchorAlign(-1, -1)
bottomRight → const AnchorAlign
const AnchorAlign(1, -1)
center → const AnchorAlign
const AnchorAlign(0, 0)
top → const AnchorAlign

Top center

const AnchorAlign(0, 1)
bottom → const AnchorAlign

Bottom center

const AnchorAlign(0, -1)
left → const AnchorAlign

Left center

const AnchorAlign(-1, 0)

Right center

const AnchorAlign(1, 0)
none → const AnchorAlign
const AnchorAlign(0, 0)

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<AnchorAlign>
A constant List of the values in this enum, in order of their declaration.