orientation property
String?
get
orientation
Implementation
String? get orientation => _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);
}
}