allCodes property

List<String> get allCodes

Get all country codes

Implementation

static List<String> get allCodes =>
    Country.values.map((c) => c.code).toList();