isPure static method

bool isPure(
  1. List<FormzInput> inputs
)

Returns a bool given a list of FormzInput indicating whether all the inputs are pure.

Implementation

static bool isPure(List<FormzInput<dynamic, dynamic>> inputs) {
  return inputs.every((input) => input.isPure);
}