SearchRoomsResponse constructor

SearchRoomsResponse({
  1. String? nextToken,
  2. List<RoomData>? rooms,
  3. int? totalCount,
})

Implementation

SearchRoomsResponse({
  this.nextToken,
  this.rooms,
  this.totalCount,
});