StateModel constructor

StateModel({
  1. int? id,
  2. String? sigla,
  3. String? nome,
})

Implementation

StateModel({
  this.id,
  this.sigla,
  this.nome,
});