get method

Future<IpGeoLocation> get(
  1. IpAddress ip, {
  2. String? language,
})

Returns the IpGeoLocation associated with the provided IpAddress.

Implementation

Future<IpGeoLocation> get(IpAddress ip, {String? language}) async {
  final Dio dio = await _dio;
  final Response response = await dio.get(
    '${Config.geoEndpoint}/$ip?fields=country,country_code,city${language == null ? '' : '&lang=$language'}',
  );

  if (response.statusCode != 200 ||
      response.data is! Map<String, dynamic> ||
      response.data?['country'] == null ||
      response.data?['country_code'] == null ||
      response.data?['city'] == null) {
    throw Exception(
      'Failed to fetch geo information. Status code: ${response.statusCode}. Data: ${response.data}',
    );
  }

  return IpGeoLocation.fromJson(response.data);
}