wrapIf method
- bool condition,
- dynamic wrapper(
- dynamic
Implementation
Widget wrapIf(bool condition, Widget Function(Widget) wrapper) {
if (condition) {
return wrapper(this);
}
return this;
}
Widget wrapIf(bool condition, Widget Function(Widget) wrapper) {
if (condition) {
return wrapper(this);
}
return this;
}