UpdatePasswordDialog constructor

UpdatePasswordDialog({
  1. Key? key,
  2. required String newPasswordHint,
  3. required Widget changePasswordText,
  4. required Widget changePasswordDescription,
  5. required String userId,
  6. required Widget passwordErrorText,
})

Implementation

UpdatePasswordDialog({
  Key? key,
  required this.newPasswordHint,
  required this.changePasswordText,
  required this.changePasswordDescription,
  required this.userId,
  required this.passwordErrorText,
}) : super(key: key);