ipAddress static method

String ipAddress()

Implementation

static String ipAddress() {
  return List.generate(4, (_) => _random.nextInt(256)).join('.');
}