SearchContactsResponse constructor

SearchContactsResponse({
  1. List<ContactData>? contacts,
  2. String? nextToken,
  3. int? totalCount,
})

Implementation

SearchContactsResponse({
  this.contacts,
  this.nextToken,
  this.totalCount,
});