SignUpForm.custom constructor

const SignUpForm.custom({
  1. Key? key,
  2. required List<SignUpFormField<Object>> fields,
})

A custom Sign Up form.

Implementation

const SignUpForm.custom({
  super.key,
  required List<SignUpFormField> super.fields,
}) : _includeDefaultFields = false,
     super._(actions: const [SignUpButton()]);