xFlexableRes method
Implementation
Widget xFlexableRes(bool condition,
{FlexFit fit = FlexFit.loose, int flex = 1, Key key}) {
if (condition) {
return xFlexable(fit: fit, flex: flex, key: key);
} else {
return this;
}
}
Widget xFlexableRes(bool condition,
{FlexFit fit = FlexFit.loose, int flex = 1, Key key}) {
if (condition) {
return xFlexable(fit: fit, flex: flex, key: key);
} else {
return this;
}
}