bottomRight property - Rectangle class - dart:math library (original) (raw)

description

Point<T> getbottomRight

inherited

Implementation

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