BSContainerInheritance constructor

const BSContainerInheritance({
  1. Key? key,
  2. required Widget child,
  3. required double containerWidth,
  4. 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,
});