factory Country.fromJson(Map<String, dynamic> json) { return Country( countryCode: json['countryCode'] as String?, countryName: json['countryName'] as String?, ); }