W3cubDocs

/Dart 2

name property

String name

Get the name of the type, e.g. "IPv4" or "IPv6".

Implementation

String get name {
  switch (_value) {
    case -1:
      return "ANY";
    case 0:
      return "IPv4";
    case 1:
      return "IPv6";
    default:
      throw new ArgumentError("Invalid InternetAddress");
  }
}

© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dartlang.org/stable/2.0.0/dart-io/InternetAddressType/name.html