animated property

bool get animated

Implementation

bool get animated => _animated?.get() ?? false;
set animated (dynamic v)

Implementation

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