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