getCountry static method
Implementation
static GrxCountry? getCountry(final GrxCountryId? id) => countries
.map<GrxCountry?>((x) => x)
.firstWhere((country) => country!.id == id, orElse: () => null);
static GrxCountry? getCountry(final GrxCountryId? id) => countries
.map<GrxCountry?>((x) => x)
.firstWhere((country) => country!.id == id, orElse: () => null);