builder method

Widget builder(
  1. WindPower? wp
)

Implementation

Widget builder(WindPower? wp) => Text(
      wp == WindPower.none
          ? "windstill"
          : wp == WindPower.medium
              ? "mäßiger wind"
              : wp == WindPower.strong
                  ? "starker wind"
                  : "unbekannter wind",
      style: TextStyle(fontSize: 8),
    );