brazilStates top-level property

List<BrazilState> brazilStates
final

Every state and the Federal District, ordered by UF code.

Handy for building a dropdown. BR is included at its alphabetical position and is the national flag rather than a state.

Implementation

final List<BrazilState> brazilStates = List.unmodifiable(
  brazilStateNames.entries
      .map((e) => BrazilState._(e.key, e.value))
      .toList(growable: false),
);