IpGeoLocation constructor

const IpGeoLocation({
  1. required String country,
  2. required String countryCode,
  3. required String city,
})

Implementation

const IpGeoLocation({
  required this.country,
  required this.countryCode,
  required this.city,
});