ConversationFetchOptions.mark constructor
- ConversationMarkType mark, {
- int pageSize = 10,
- String? cursor,
The constructor of ChatConversationFetchOptions. Get marked conversation.
mark
The mark type of the conversation.
pageSize
The page size of the conversation, when using mark, the value range is 1,10
, default is 10.
cursor
The cursor of the conversation.
Implementation
ConversationFetchOptions.mark(
ConversationMarkType mark, {
int pageSize = 10,
String? cursor,
}) : this._(mark: mark, pageSize: pageSize, cursor: cursor, pinned: false);