from_str static method
Implementation
static Result<IPAddress, String> from_str(String str, int radix, int prefix) {
try {
final num = BigInt.parse(str, radix: radix);
return from_int(num, prefix);
} catch (e) {
return Result.error("unparsable ${str}");
}
}