RegisterScreen constructor

const RegisterScreen({
  1. Key? key,
  2. RegisterScreenConfig? config,
  3. required dynamic onSubmit(
    1. Map<String, String>
    ),
  4. Map<String, String>? initialData,
})

Implementation

const RegisterScreen({
  Key? key,
  this.config,
  required this.onSubmit,
  this.initialData,
}) : super(key: key);