builder property

Iterable<Component> Function(BuildContext context, A value, B value2, C value3, D value4, Component? child) builder
final

Build a widget tree based on the value from a Provider<T>.

Must not be null.

Implementation

final Iterable<Component> Function(
  BuildContext context,
  A value,
  B value2,
  C value3,
  D value4,
  Component? child,
) builder;