CountryResponse constructor

CountryResponse({
  1. required String countryCode,
  2. required String ip,
})

Implementation

CountryResponse({
  required this.countryCode,
  required this.ip,
}) : country = _countryCodes[countryCode] ?? countryCode;