MutationBuilder<T, A> constructor

const MutationBuilder<T, A>({
  1. Key? key,
  2. required Mutation<T, A> mutation,
  3. required MutationBuilderCallback<T, A> builder,
  4. MutationBuilderCondition<T>? buildWhen,
})

Listen to changes in an Mutation and build the ui with the result.

Implementation

const MutationBuilder({
  Key? key,
  required this.mutation,
  required this.builder,
  this.buildWhen,
}) : super(key: key);