CustomerRequestMessage constructor

CustomerRequestMessage({
  1. String? email,
  2. String? name,
  3. String? cpfOrCnpj,
  4. String? withCopyEmails,
  5. String? notes,
  6. List<CustomVariables>? customVariables,
  7. String? zipCode,
  8. int? number,
  9. String? complement,
})

Implementation

CustomerRequestMessage({
  this.email,
  this.name,
  this.cpfOrCnpj,
  this.withCopyEmails,
  this.notes,
  this.customVariables,
  this.zipCode,
  this.number,
  this.complement,
});