7 lines
144 B
Dart
7 lines
144 B
Dart
|
|
String? notEmptyValidator(String? value) {
|
||
|
|
if (value == null || value.trim().isEmpty) {
|
||
|
|
return 'Campo obbligatorio';
|
||
|
|
}
|
||
|
|
return null;
|
||
|
|
}
|