withPylons method

List<Widget> withPylons(
  1. PylonBuilder builder
)

Maps each item in this iterable to a Pylon widget using the provided builder, returning a list suitable for use in widget trees.

Implementation

List<Widget> withPylons(PylonBuilder builder) =>
    map((e) => Pylon<T>(value: e, builder: builder)).toList();