wrapIfElse method
Implementation
Widget wrapIfElse(
bool condition,
Widget Function(Widget) wrapper, {
required Widget Function(Widget) elseWrapper,
}) {
if (condition) {
return wrapper(this);
}
return elseWrapper(this);
}
Widget wrapIfElse(
bool condition,
Widget Function(Widget) wrapper, {
required Widget Function(Widget) elseWrapper,
}) {
if (condition) {
return wrapper(this);
}
return elseWrapper(this);
}