orientation property

String? get orientation

Implementation

String? get orientation
{
  if (_orientation == null) return null;
  return _orientation?.get();
}
set orientation (dynamic v)

Implementation

set orientation (dynamic v)
{
  if (_orientation != null)
  {
    _orientation!.set(v);
  }
  else if (v != null)
  {
    _orientation = StringObservable(Binding.toKey(id, 'orientation'), v, scope: scope);
  }
}