ConversationFetchOptions.mark constructor
- ConversationMarkType mark, {
- int pageSize = 10,
- String? cursor,
The constructor of ConversationFetchOptions. Gets marked conversations.
mark The conversation mark.
pageSize The number of conversations to retrieve per page. The value range is 1,50. If you retrieve marked conversations, the value range is 1,10, with 10 as the default.
cursor The cursor to specify where to start retrieving conversations.
Implementation
ConversationFetchOptions.mark(
ConversationMarkType mark, {
int pageSize = 10,
String? cursor,
}) : this._(
mark: mark,
pageSize: pageSize,
cursor: cursor,
pinned: false,
);