mandatory property

bool? get mandatory

Implementation

bool? get mandatory => _mandatory?.get();
set mandatory (dynamic v)

Implementation

set mandatory(dynamic v) {
  if (_mandatory != null) {
    _mandatory!.set(v);
  } else if (v != null) {
    _mandatory =
        BooleanObservable(Binding.toKey(id, 'mandatory'), v, scope: scope);
  }
}