textSize property
double
get
textSize
Implementation
double get textSize => _textSize?.get() ?? 14;
set
textSize
(dynamic v)
Implementation
set textSize(dynamic v) {
if (_textSize != null) {
_textSize!.set(v);
} else if (v != null) {
_textSize = DoubleObservable(Binding.toKey(id, 'textsize'), v,
scope: scope, listener: onPropertyChange);
}
}