copyWith method

ConversationFetchOptions copyWith(
  1. {String? cursor}
)

Implementation

ConversationFetchOptions copyWith({String? cursor}) =>
    ConversationFetchOptions._(
      pageSize: pageSize,
      cursor: cursor,
      mark: mark,
      pinned: pinned,
    );