@@ -21,25 +21,35 @@ class MessageLookup extends MessageLookupByLibrary {
21
21
22
22
static m0 (max) => "Value must be less than or equal to ${max }" ;
23
23
24
- static m1 (maxLength) => "Value must have a length less than or equal to ${maxLength }" ;
24
+ static m1 (maxLength) =>
25
+ "Value must have a length less than or equal to ${maxLength }" ;
25
26
26
27
static m2 (min) => "Value must be greater than or equal to ${min }." ;
27
28
28
- static m3 (minLength) => "Value must have a length greater than or equal to ${minLength }" ;
29
+ static m3 (minLength) =>
30
+ "Value must have a length greater than or equal to ${minLength }" ;
29
31
30
32
final messages = _notInlinedMessages (_notInlinedMessages);
31
- static _notInlinedMessages (_) => < String , Function > {
32
- "creditCardErrorText" : MessageLookupByLibrary .simpleMessage ("This field requires a valid credit card number." ),
33
- "dateStringErrorText" : MessageLookupByLibrary .simpleMessage ("This field requires a valid date string." ),
34
- "emailErrorText" : MessageLookupByLibrary .simpleMessage ("This field requires a valid email address." ),
35
- "ipErrorText" : MessageLookupByLibrary .simpleMessage ("This field requires a valid IP." ),
36
- "matchErrorText" : MessageLookupByLibrary .simpleMessage ("Value does not match pattern." ),
37
- "maxErrorText" : m0,
38
- "maxLengthErrorText" : m1,
39
- "minErrorText" : m2,
40
- "minLengthErrorText" : m3,
41
- "numericErrorText" : MessageLookupByLibrary .simpleMessage ("Value must be numeric." ),
42
- "requiredErrorText" : MessageLookupByLibrary .simpleMessage ("Este campo no puede estar vacío." ),
43
- "urlErrorText" : MessageLookupByLibrary .simpleMessage ("This field requires a valid URL address." )
44
- };
33
+ static _notInlinedMessages (_) => < String , Function > {
34
+ "creditCardErrorText" : MessageLookupByLibrary .simpleMessage (
35
+ "This field requires a valid credit card number." ),
36
+ "dateStringErrorText" : MessageLookupByLibrary .simpleMessage (
37
+ "This field requires a valid date string." ),
38
+ "emailErrorText" : MessageLookupByLibrary .simpleMessage (
39
+ "This field requires a valid email address." ),
40
+ "ipErrorText" : MessageLookupByLibrary .simpleMessage (
41
+ "This field requires a valid IP." ),
42
+ "matchErrorText" : MessageLookupByLibrary .simpleMessage (
43
+ "Value does not match pattern." ),
44
+ "maxErrorText" : m0,
45
+ "maxLengthErrorText" : m1,
46
+ "minErrorText" : m2,
47
+ "minLengthErrorText" : m3,
48
+ "numericErrorText" :
49
+ MessageLookupByLibrary .simpleMessage ("Value must be numeric." ),
50
+ "requiredErrorText" : MessageLookupByLibrary .simpleMessage (
51
+ "Este campo no puede estar vacío." ),
52
+ "urlErrorText" : MessageLookupByLibrary .simpleMessage (
53
+ "This field requires a valid URL address." )
54
+ };
45
55
}
0 commit comments