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