SearchProfilesResponse constructor

SearchProfilesResponse({
  1. String? nextToken,
  2. List<ProfileData>? profiles,
  3. int? totalCount,
})

Implementation

SearchProfilesResponse({
  this.nextToken,
  this.profiles,
  this.totalCount,
});