Parallel constructor
Parallel({
- Direction direction = Direction.horizontal,
- SNumber leftMargin = const SNumber.number(0),
- SNumber topMargin = const SNumber.number(0),
- SNumber rightMargin = const SNumber.number(0),
- SNumber? width,
- SNumber? height,
- bool expandable = false,
- int expandStartIndex = 0,
- int expandCount = 0,
- num expandWidth = 30,
- List<
ParallelAxis> axisList = const [], - Color? backgroundColor,
- SNumber leftPadding = const SNumber.percent(5),
- SNumber topPadding = const SNumber.percent(5),
- SNumber rightPadding = const SNumber.percent(5),
- SNumber bottomPadding = const SNumber.percent(2),
- String id = '',
- bool show = true,
Implementation
Parallel({
this.direction = Direction.horizontal,
super.leftMargin,
super.topMargin,
super.rightMargin,
super.width,
super.height,
this.expandable = false,
this.expandStartIndex=0,
this.expandCount = 0,
this.expandWidth = 30,
this.axisList = const [],
this.backgroundColor,
this.leftPadding=const SNumber.percent(5),
this.topPadding=const SNumber.percent(5),
this.rightPadding=const SNumber.percent(5),
this.bottomPadding=const SNumber.percent(2),
super.id,
super.show,
});