int getCountryIdByCode(String code) { final country = countriesList.firstWhere((c) => c['code'] == code); return country['id']; }