GetConversationsPageResponseModel constructor

const GetConversationsPageResponseModel({
  1. required List<ConversationSummaryResponseModel> conversations,
  2. dynamic nextCursor,
  3. required bool hasMore,
})

Implementation

const GetConversationsPageResponseModel({
  required this.conversations,
  this.nextCursor,
  required this.hasMore,
});