22 lines
1.2 KiB
Dart
22 lines
1.2 KiB
Dart
class ValidateKey {
|
|
static const String requiredErrorText = "required_error_text";
|
|
static const String equalErrorText = "equalErrorText";
|
|
static const String notEqualErrorText = "notEqualErrorText";
|
|
static const String minErrorText = "minErrorText";
|
|
static const String maxErrorText = "maxErrorText";
|
|
static const String minLengthErrorText = "minLengthErrorText";
|
|
static const String maxLengthErrorText = "maxLengthErrorText";
|
|
static const String emailErrorText = "emailErrorText";
|
|
static const String phoneNumberErrorText = "phoneNumberErrorText";
|
|
static const String urlErrorText = "urlErrorText";
|
|
static const String matchErrorText = "matchErrorText";
|
|
static const String numericErrorText = "numericErrorText";
|
|
static const String integerErrorText = "integerErrorText";
|
|
static const String valueCandidate = "valueCandidate";
|
|
static const String ipErrorText = "ipErrorText";
|
|
static const String dateStringErrorText = "matchErrorText";
|
|
static const String creditCardErrorText = "creditCardErrorText";
|
|
static const String dateGreaterThanErrorText = "date_greater_than_error_text";
|
|
static const String dateGreaterThanNowErrorText = "date_greater_than_now_error_text";
|
|
}
|