xFlexable method

Widget xFlexable (
  1. {FlexFit fit = FlexFit.loose,
  2. int flex = 1,
  3. Key key}
)

Implementation

Widget xFlexable({FlexFit fit = FlexFit.loose, int flex = 1, Key key}) {
  return Flexible(fit: fit, flex: flex, key: key, child: this);
}