Dart
dart:math
Rectangle
<
T extends num
>
right property
right
Dart
dart:math
Rectangle
<
T extends num
>
right property
Rectangle class
Constructors
Rectangle
fromPoints
Properties
bottom
bottomLeft
bottomRight
hashCode
height
left
right
runtimeType
top
topLeft
topRight
width
Methods
boundingBox
containsPoint
containsRectangle
intersection
intersects
noSuchMethod
toString
Operators
operator ==
description
right
property
Null safety
T
right
inherited
The x-coordinate of the right edge.
Implementation
T get right => (left + width) as T;