ipv4Tov6 property
String?
get
ipv4Tov6
Convert an IPv4 address to an IPv6 address,
Implementation
String? get ipv4Tov6 {
if (!this.isIPAddress) {
return null;
}
if (this.isIPv6) {
return this;
}
return '::ffff:$this';
}