mobile_nebula/lib/validators/mtuValidator.dart
John Maguire c7a53c3905
Support DN host enrollment (#86)
Co-authored-by: Nate Brown <nbrown.us@gmail.com>
2022-11-17 16:43:16 -05:00

14 lines
306 B
Dart

Function mtuValidator(bool required) {
return (String str) {
if (str == "") {
return required ? 'Please fill out this field' : null;
}
var mtu = int.tryParse(str);
if (mtu == null || mtu < 0 || mtu > 65535) {
return 'Please enter a valid mtu';
}
return null;
};
}