bottomRight property Null safety

Point<T> bottomRight
inherited

Implementation

Point<T> get bottomRight =>
    Point<T>((this.left + this.width) as T, (this.top + this.height) as T);