format property

String? get format

Implementation

String? get format => _format?.get();
set format (dynamic v)

Implementation

set format(dynamic v) {
  if (_format != null) {
    _format!.set(v);
  } else if (v != null) {
    _format = StringObservable(Binding.toKey(id, 'format'), v,
        scope: scope, listener: onPropertyChange);
  }
}