getCountryIdByCode function

int getCountryIdByCode(
  1. String code
)

Implementation

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