TernaryContainer constructor
TernaryContainer({
- Key? key,
- required Widget header,
- required Widget content,
- MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
- MainAxisSize mainAxisSize = MainAxisSize.min,
- CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
- bool inDialog = false,
- Axis direction = Axis.vertical,
Implementation
TernaryContainer({
Key? key,
required this.header,
required this.content,
required this.footer,
this.mainAxisAlignment = MainAxisAlignment.start,
this.mainAxisSize = MainAxisSize.min,
this.crossAxisAlignment = CrossAxisAlignment.center,
this.inDialog = false,
this.direction = Axis.vertical,
});