findByCode static method

TCountry? findByCode(
  1. String code
)

Implementation

static TCountry? findByCode(String code) {
  try {
    return all.firstWhere((c) => c.code.toUpperCase() == code.toUpperCase());
  } catch (_) {
    return null;
  }
}