BSColumnInheritance constructor

const BSColumnInheritance({
  1. Key? key,
  2. required Widget child,
  3. required double currentWidth,
})

The InheritedWidget, which passes data to all the children of BSColumnInheritance, allows children to update when BSColumnInheritance data updates, usually from a screen resize. The current width of the column can be used for display of widgets

Implementation

const BSColumnInheritance({
  super.key,
  required super.child,
  required this.currentWidth,
});