CreateCustomerResponse constructor

const CreateCustomerResponse({
  1. List<SquareError>? errors,
  2. Customer? customer,
})

Implementation

const CreateCustomerResponse({
  super.errors,
  this.customer,
});