bottom property

  1. @override
T bottom

The y-coordinate of the bottom edge.

Implementation

@override
T get bottom => top + height as T;
void bottom=(T value)

Implementation

set bottom(T value) {
  height = value - top as T;
}