tryParse method - InternetAddress class - dart:io library (original) (raw)
tryParse static method
InternetAddress? tryParse(
- String address )
Attempts to parse address
as a numeric address.
Returns null
If address
is not a numeric IPv4 (dotted-decimal notation) or IPv6 (hexadecimal representation) address.
Implementation
external static InternetAddress? tryParse(String address);