countries property

List<TheCountry> countries

This is all the available countries this library supports, list can be found in the data.dart at the root of lib, if you need to do changes or add additional data please fork this repo and ask me to merge

Implementation

List<TheCountry> get countries =>
    _countries.map((e) => TheCountry(e)).toList();