ConversationFetchOptions constructor

ConversationFetchOptions({
  1. int pageSize = 20,
  2. String? cursor,
})

The constructor of ConversationFetchOptions. 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({
  int pageSize = 20,
  String? cursor,
}) : this._(
        mark: null,
        pageSize: pageSize,
        cursor: cursor,
        pinned: false,
      );