SearchCustomersResponse constructor

const SearchCustomersResponse({
  1. List<SquareError>? error,
  2. String? cursor,
  3. List<Customer>? customers,
})

Implementation

const SearchCustomersResponse({
  List<SquareError>? error,
  this.cursor,
  this.customers,
}) : super(errors: error);