orientation property

  1. @override
  2. @Accessor(key: 'aria-orientation')
dynamic orientation

Indicates whether the element and orientation is horizontal or vertical.

See: developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-orientation

Implementation

@override
@Accessor(key: 'aria-orientation')
dynamic get orientation =>
    (props[_$key__orientation___$AriaPropsMixin] ?? null) as dynamic;
  1. @override
  2. @Accessor(key: 'aria-orientation')
void orientation=(dynamic value)

Indicates whether the element and orientation is horizontal or vertical.

See: developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-orientation

Implementation

@override
@Accessor(key: 'aria-orientation')
set orientation(dynamic value) =>
    props[_$key__orientation___$AriaPropsMixin] = value;