AsyncForm<T> constructor

const AsyncForm<T>({
  1. Key? key,
  2. required AsyncTaskChildBuilder<T> builder,
  3. AsyncValueGetter<T>? onValidated,
  4. AsyncValueSetter<T>? onSuccess,
})

Implementation

const AsyncForm({super.key, required this.builder, this.onValidated, this.onSuccess});