withArgAndTickerProvider<Model, Msg, Arg> static method
MVUBuilder<Model, Msg>
withArgAndTickerProvider<Model, Msg, Arg>(
- Arg a, {
- required (Model, Cmd<
Msg> ) init(- Arg
- required (Model, Cmd<
Msg> ) update(- Msg,
- Model
- required MsgWidgetBuilderWithTickerProvider<
Model, Msg> view, - Subscription<
Model, Msg> ? subscriptions, - bool modelEquality(
- Model,
- Model
Creates a MVUBuilder with the given init
, update
and view
functions.
init
is called once with the givenargument
to return the initial model and commands.update
is called when a message is received to update the model and return new commands.view
is called to render the view and dispatch new messages.tickerProvider
is used to create a Ticker for animations.
Implementation
static MVUBuilder<Model, Msg> withArgAndTickerProvider<Model, Msg, Arg>(Arg a,
{required (Model, Cmd<Msg>) Function(Arg) init,
required (Model, Cmd<Msg>) Function(Msg, Model) update,
required MsgWidgetBuilderWithTickerProvider<Model, Msg> view,
Subscription<Model, Msg>? subscriptions,
bool Function(Model, Model)? modelEquality}) =>
MVUBuilder._(
MVUProcessor.fromFunctions(
init: () => init(a),
update: update,
subscriptions: subscriptions,
modelEquality: modelEquality),
view);