SpaceSizedHeightBox constructor

SpaceSizedHeightBox({
  1. Key? key,
  2. required BuildContext context,
  3. required double height,
})

Implementation

SpaceSizedHeightBox(
    {Key? key, required BuildContext context, required double height})
    : assert(height > 0 && height <= 1),
      super(key: key, height: context.dynamicHeight(height));