seeip_client 0.1.2 copy "seeip_client: ^0.1.2" to clipboard
seeip_client: ^0.1.2 copied to clipboard

outdated

A library that makes it easy to fetch data from SeeIP - A simple IP address API.

example/seeip_client_example.dart

// Copyright (c) 2019, Mad About Brighton. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

import 'package:seeip_client/seeip_client.dart';

void main() async {
  var seeip = SeeipClient();

  // Fetches only the IP address of the requesting device.
  var ip = await seeip.getIP();
  print(ip);

  // Fetches only the IPv4 address of the requesting device.
  var ipv4 = await seeip.getIPv4();
  print(ipv4);

  // Fetches the Geo IP of the requesting device.
  var geoIP = await seeip.getGeoIP();
  print(geoIP);

  // Fetches the Geo IP of the specified IP address.
  var geoIPSpecific = await seeip.getGeoIP('216.58.208.174');
  print(geoIPSpecific);
}
3
likes
0
points
265
downloads

Publisher

verified publishermadaboutbrighton.net

Weekly Downloads

A library that makes it easy to fetch data from SeeIP - A simple IP address API.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

http

More

Packages that depend on seeip_client