CustomerInfo constructor

CustomerInfo({
  1. String? customerId,
  2. String? partnerName,
  3. int? partnerTypeId,
  4. String? mobileNumber,
  5. String? customerType,
  6. int? status,
  7. String? fullAddress,
  8. bool? customerInfoOperator,
})

Implementation

CustomerInfo({
  this.customerId,
  this.partnerName,
  this.partnerTypeId,
  this.mobileNumber,
  this.customerType,
  this.status,
  this.fullAddress,
  this.customerInfoOperator,
});