Cep constructor

const Cep({
  1. String cep = 'N/A',
  2. String state = 'N/A',
  3. String city = 'N/A',
  4. String street = 'N/A',
  5. String neighborhood = 'N/A',
})

Implementation

const Cep({
  this.cep = 'N/A',
  this.state = 'N/A',
  this.city = 'N/A',
  this.street = 'N/A',
  this.neighborhood = 'N/A',
});