ListConnectionsResponse constructor

ListConnectionsResponse({
  1. List<Person>? connections,
  2. String? nextPageToken,
  3. String? nextSyncToken,
  4. int? totalItems,
  5. int? totalPeople,
})

Implementation

ListConnectionsResponse({
  this.connections,
  this.nextPageToken,
  this.nextSyncToken,
  this.totalItems,
  this.totalPeople,
});