ExpandedGap constructor

const ExpandedGap({
  1. Key? key,
  2. Widget? child,
})

Implementation

const ExpandedGap({super.key, Widget? child})
    : super(
          fit: FlexFit.tight,
          child: child ?? const SizedBox.shrink(),
          flex: 1);