Cep constructor

const Cep(
  1. String _cep,
  2. String _state,
  3. String _city,
  4. String _street,
  5. String _neighborhood,
)

Implementation

const Cep(
  this._cep,
  this._state,
  this._city,
  this._street,
  this._neighborhood,
);