DomRectReadOnly class Null safety
Constructors
- DomRectReadOnly([num? x, num? y, num? width, num? height])
-
factory
Properties
- bottom → num
-
The y-coordinate of the bottom edge.
read-only
-
bottomLeft
→ Point<
num> -
read-only
-
bottomRight
→ Point<
num> -
read-only
- hashCode → int
-
The hash code for this object.
read-only
- height → num
-
The height of the rectangle.
read-only, override
- left → num
-
The x-coordinate of the left edge.
read-only, override
- right → num
-
The x-coordinate of the right edge.
read-only
- runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited
- top → num
-
The y-coordinate of the top edge.
read-only, override
-
topLeft
→ Point<
num> -
read-only
-
topRight
→ Point<
num> -
read-only
- width → num
-
The width of the rectangle.
read-only, override
- x → num?
-
read-only
- y → num?
-
read-only
Methods
-
boundingBox(
Rectangle< num> other) → Rectangle<num> -
Returns a new rectangle which completely contains
this
andother
. -
containsPoint(
Point< num> another) → bool -
Tests whether
another
is inside or along the edges ofthis
. -
containsRectangle(
Rectangle< num> another) → bool -
Tests whether
this
entirely containsanother
. -
intersection(
Rectangle< num> other) → Rectangle<num> ? -
Computes the intersection of
this
andother
. -
intersects(
Rectangle< num> other) → bool -
Returns true if
this
intersectsother
. -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed.
inherited
-
toString(
) → String - A string representation of this object.
Operators
-
operator ==(
Object other) → bool - The equality operator.
Static Methods
-
fromRect(
[Map? other]) → DomRectReadOnly