when method

Widget when(
  1. bool condition,
  2. Widget wrapper(
    1. Widget child
    )
)

Applies wrapper only when condition is true.

Implementation

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