CustomerModel constructor

CustomerModel({
  1. String? id,
  2. String? email,
  3. String? name,
  4. String? notes,
  5. String? createdAt,
  6. String? updatedAt,
  7. List<CustomVariables>? customVariables,
  8. String? zipCode,
  9. int? number,
  10. String? complement,
  11. String? cpfCnpj,
})

Implementation

CustomerModel({
  this.id,
  this.email,
  this.name,
  this.notes,
  this.createdAt,
  this.updatedAt,
  this.customVariables,
  this.zipCode,
  this.number,
  this.complement,
  this.cpfCnpj,
});