Skip to content

Instantly share code, notes, and snippets.

@hjJunior
Last active April 13, 2019 16:58
Show Gist options
  • Save hjJunior/7e6453f0c586050e3697d1f5b37d89bf to your computer and use it in GitHub Desktop.
Save hjJunior/7e6453f0c586050e3697d1f5b37d89bf to your computer and use it in GitHub Desktop.
class MyIp {
final _client = Client();
Future<String> get ipAddress async {
final apiResult = await _client.get('https://api.ipify.org/?format=json');
return json.decode(apiResult.body)['ip'];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment