AddOrUpdateCustomerRequest constructor

AddOrUpdateCustomerRequest({
  1. int? dealerCustomerId,
  2. String? customerCode,
  3. String? password,
  4. String? firstName,
  5. String? lastName,
  6. int? gender,
  7. String? birthDate,
  8. String? gsmNumber,
  9. String? email,
  10. String? address,
})

Implementation

AddOrUpdateCustomerRequest({
  this.dealerCustomerId,
  this.customerCode,
  this.password,
  this.firstName,
  this.lastName,
  this.gender,
  this.birthDate,
  this.gsmNumber,
  this.email,
  this.address,
});