dart_ipify 1.0.0 dart_ipify: ^1.0.0 copied to clipboard
This package uses the remote IPify web service in order to get the public IP address.
example/dart_ipify_example.dart
import 'package:dart_ipify/dart_ipify.dart';
// Example
void main() async {
final data = await Ipify.ipv64(format: Format.JSON);
print(data);
}