orientation property

String get orientation

Implementation

String get orientation => _orientation;
  1. @Input()
set orientation (String s)

Orientation in which the steps are laid out.

Possible values: 'horizontal' and 'vertical' (default).

Implementation

@Input()
set orientation(String s) {
  assert(orientations.contains(s));
  _orientation = s;
}