stateNameForUf function

String? stateNameForUf(
  1. String uf
)

The state name in Portuguese for uf, or null when unrecognised.

Implementation

String? stateNameForUf(String uf) => brazilStateNames[uf.trim().toUpperCase()];