RegistrationScreen constructor

const RegistrationScreen({
  1. required RegistrationOptions registrationOptions,
  2. Key? key,
})

Constructs a RegistrationScreen object.

registrationOptions specifies the registration options.

Implementation

const RegistrationScreen({
  required this.registrationOptions,
  Key? key,
}) : super(key: key);