BSContainerInheritance constructor
const
BSContainerInheritance({
- Key? key,
- required Widget child,
- required double containerWidth,
- required BSBreakPointLabels currentBSBreakPointLabel,
The InheritedWidget, which passes data to all the children of BSContainer, allows children to update when BSContainer data updates, usually from a screen resize
Implementation
const BSContainerInheritance({
super.key,
required super.child,
required this.containerWidth,
required this.currentBSBreakPointLabel,
});