get_ip_address 0.0.5 copy "get_ip_address: ^0.0.5" to clipboard
get_ip_address: ^0.0.5 copied to clipboard

outdated

A package to get the ip address of the current device. Uses https://api64.ipify.org to get the system IP.

example/example.dart

import 'package:get_ip_address/get_ip_address.dart';

void main() async {
  try {
    /// Initialize Ip Address
    var ipAddress = IpAddress(type: RequestType.json);

    /// Get the IpAddress based on requestType.
    dynamic data = await ipAddress.getIpAddress();
    print(data.toString());
  } on IpAddressException catch (exception) {
    /// Handle the exception.
    print(exception.message);
  }
}
45
likes
0
pub points
97%
popularity

Publisher

unverified uploader

A package to get the ip address of the current device. Uses https://api64.ipify.org to get the system IP.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

http

More

Packages that depend on get_ip_address