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