InfoUsuario constructor

InfoUsuario({
  1. String nome = "",
  2. String sobrenome = "",
  3. String cpfCnpj = "",
  4. String rg = "",
  5. String cnh = "",
  6. String pis = "",
  7. List<String> emails = const [],
  8. List<Telefone> telefones = const [],
  9. List<Endereco> enderecos = const [],
  10. JsonMap informacoesComplementares = const {},
})

Implementation

InfoUsuario({
  this.nome = "",
  this.sobrenome = "",
  this.cpfCnpj = "",
  this.rg = "",
  this.cnh = "",
  this.pis = "",
  this.emails = const [],
  this.telefones = const [],
  this.enderecos = const [],
  this.informacoesComplementares = const {},
});