allow property

String? get allow

Implementation

String? get allow => _allow?.get();
set allow (dynamic v)

Implementation

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