ExpandedModifier constructor
Creates a widget that expands a child of a Row, Column, or Flex so that the child fills the available space along the flex widget's main axis.
Implementation
const ExpandedModifier({
super.key,
super.child,
int? flex,
}) : super(fit: FlexFit.tight, flex: flex ?? 1);