Widget wrapIf(bool condition, Widget Function(Widget) wrapper) { return condition ? wrapper(this) : this; }