RepeatPasswordValidationController constructor

RepeatPasswordValidationController({
  1. AdeptController? passwordController,
  2. String message = "Passwords doesn't match",
})

Implementation

RepeatPasswordValidationController(
    {AdeptController? passwordController,
    String message = "Passwords doesn't match"})
    : super(
        message: message,
        isValid: ({controller}) =>
            controller?.rawValue?.toString() ==
            passwordController?.rawValue?.toString(),
      );