viewHeight property
double?
get
viewHeight
Implementation
double? get viewHeight => _viewHeight;
set
viewHeight
(double? v)
Implementation
set viewHeight(double? v) {
// important this gets before the observable
_viewHeight = v;
// we handle this slightly different for performance reasons
// The observable is only created in deserialize if its bound
if (_viewHeightObservable != null) _viewHeightObservable!.set(v);
}