ConversationFetchOptions.pinned constructor
The constructor of ConversationFetchOptions. Gets pinned conversations.
pageSize The number of conversations to retrieve per page. The value range is 1,50, with 20 as the default.
cursor The cursor to specify where to start retrieving conversations.
Implementation
ConversationFetchOptions.pinned({
int pageSize = 20,
String? cursor,
}) : this._(
mark: null,
pageSize: pageSize,
cursor: cursor,
pinned: true,
);