Binder<Model> constructor

Binder<Model>(
  1. Widget builder(
    1. BuildContext context,
    2. Model part
    )
)

Implementation

Binder(Widget Function(BuildContext context, Model part) builder)
    : super((model) => model, builder);