bottom property
The bottom position relative to the container viewport.
Implementation
@override
num? get bottom => _bottom;
set
bottom
(num? bottom)
Implementation
set bottom(num? bottom) {
if (_bottom != bottom) {
_bottom = bottom;
_asyncScheduler.scheduleUpdate();
}
}