ipv6Address method

String ipv6Address()

Generates a IP version 6 address.

Example:

  faker.internet.ipv6Address();

Implementation

String ipv6Address() =>
    random.numbers(65535, 8).map((x) => x.toRadixString(16)).join(':');