get_ip_address 0.0.6 get_ip_address: ^0.0.6 copied to clipboard
A package to get the ip address of the current device. Uses https://api64.ipify.org to get the system IP.
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);
}
}