PaginationState

data class PaginationState(val loadingMore: Boolean = false, val endOfChannels: Boolean = false)

Describes the pagination state.

Parameters

loadingMore

If we are currently loading more channels.

endOfChannels

If we have reached the end of all available channels for the current user.

Constructors

Link copied to clipboard
constructor(loadingMore: Boolean = false, endOfChannels: Boolean = false)

Properties

Link copied to clipboard
val endOfChannels: Boolean = false
Link copied to clipboard
val loadingMore: Boolean = false