ListCustomersResponse constructor

ListCustomersResponse({
  1. List<Customer>? customers,
  2. String? nextPageToken,
  3. List<String>? unreachable,
})

Implementation

ListCustomersResponse({
  this.customers,
  this.nextPageToken,
  this.unreachable,
});