ForgotPasswordTemplate<T extends VirtualAccountState> constructor

const ForgotPasswordTemplate<T extends VirtualAccountState>({
  1. Key? key,
  2. String credential = "",
  3. required SignInSignUpWordings signInWording,
  4. required dynamic onResetRequested(
    1. String
    ),
})

Implementation

const ForgotPasswordTemplate({
  Key? key,
  this.credential = "",
  required this.signInWording,
  required this.onResetRequested,
}) : super(key: key);