modal property

bool get modal

Implementation

bool get modal => _modal?.get() ?? false;
set modal (dynamic v)

Implementation

set modal(dynamic v)
{
  if (_modal != null)
  {
    _modal!.set(v);
  }
  else if (v != null)
  {
    _modal = BooleanObservable(Binding.toKey(id, 'modal'), v, scope: scope, listener: onPropertyChange);
  }
}