font property
String?
get
font
Implementation
String? get font => _font?.get() ?? System.theme.font;
set
font
(dynamic v)
Implementation
set font(dynamic v) {
if (_font != null) {
_font!.set(v);
} else if (v != null) {
_font = StringObservable(Binding.toKey(id, 'font'), v,
scope: scope, listener: onPropertyChange);
}
}