GroundedBottomWrapper constructor

const GroundedBottomWrapper({
  1. Key? key,
  2. required ThemeData? theme,
  3. required List<Widget> children(
    1. BoxConstraints constraints
    ),
})

Constructor for the GroundedBottomWrapper.

Requires the theme and children parameters.

Implementation

const GroundedBottomWrapper({
  super.key,
  required this.theme,
  required this.children,
});