VerificationScreen constructor

VerificationScreen({
  1. Key? key,
  2. required Config config,
  3. required String password,
  4. required LoginType loginType,
  5. required DateTime expiresAt,
  6. String? email,
  7. String? phone,
})

Implementation

VerificationScreen({
  Key? key,
  required this.config,
  required this.password,
  required this.loginType,
  required this.expiresAt,
  this.email,
  this.phone,
}) : super(key: key);