Country by ISO 3166-1 alpha-3 code (e.g. 'USA'). Returns null if not found.
'USA'
static Country? byAlpha3Code(String code) => _all.firstWhereOrNull((c) => c.alpha3Code == code);