BSRowInheritance constructor

const BSRowInheritance({
  1. Key? key,
  2. required Widget child,
  3. required Axis currentAxis,
})

The InheritedWidget, which passes data to all the children of BSRowInheritance, allows children to update when BSRowInheritance data updates, usually from a screen resize. The current axis of the row is used to determine the size of children BSColumn

Implementation

const BSRowInheritance({
  super.key,
  required super.child,
  required this.currentAxis,
});