byAlpha3Code static method

Country? byAlpha3Code(
  1. String code
)

Country by ISO 3166-1 alpha-3 code (e.g. 'USA'). Returns null if not found.

Implementation

static Country? byAlpha3Code(String code) =>
    _all.firstWhereOrNull((c) => c.alpha3Code == code);