allow property

String? get allow

Implementation

String? get allow {
  if (_allow == null) return null;
  return _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);
  }
}