CustomerResponse constructor

CustomerResponse({
  1. String? cursor,
  2. List<SquareError>? errors,
  3. Customer? customer,
  4. List<Customer>? customers,
})

Implementation

CustomerResponse({
  this.cursor, this.errors, this.customer, this.customers
});