AllCustomersResponse constructor

AllCustomersResponse({
  1. String? status,
  2. String? message,
  3. List<CustomerData>? data,
})

Implementation

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