validateOtp function
Validates the given value as an OTP (One-Time Password).
Returns an error message if validation fails, or null if valid.
Implementation
String? validateOtp(String? value) =>
Validators.validate(value, ValidationRules.otp);