trifid_mobile/lib/validators/ipValidator.dart

23 lines
369 B
Dart
Raw Normal View History

2021-04-23 16:23:06 -05:00
import 'dart:io';
2020-07-27 15:43:58 -05:00
2021-04-23 16:23:06 -05:00
bool ipValidator(String str, bool enableIPV6) {
final ia = InternetAddress.tryParse(str);
if (ia == null) {
2020-07-27 15:43:58 -05:00
return false;
}
2021-04-23 16:23:06 -05:00
switch (ia.type) {
case InternetAddressType.IPv6: {
if (enableIPV6) {
return true;
}
}
break;
case InternetAddressType.IPv4: { return true; }
break;
2020-07-27 15:43:58 -05:00
}
2021-04-23 16:23:06 -05:00
return false;
2020-07-27 15:43:58 -05:00
}