max property
String?
get
max
Implementation
String? get max {
return _max?.get();
}
set
max
(dynamic v)
Implementation
set max (dynamic v)
{
if (_max != null)
{
_max!.set(v);
}
else if (v != null)
{
_max = StringObservable(Binding.toKey(id, 'max'), v, scope: scope, listener: onPropertyChange);
}
}