CreateCustomerResponse constructor

CreateCustomerResponse({
  1. String? status,
  2. String? message,
  3. CustomerData? data,
})

Implementation

CreateCustomerResponse({
  this.status,
  this.message,
  this.data,
});