getChannelStates abstract method

Future<List<ChannelState>> getChannelStates({
  1. Filter? filter,
  2. List<SortOption<ChannelModel>>? sort,
  3. PaginationParams? paginationParams,
})

Get all the stored ChannelStates

Optionally, pass filter, sort, paginationParams for filtering out states.

Implementation

Future<List<ChannelState>> getChannelStates({
  Filter? filter,
  List<SortOption<ChannelModel>>? sort,
  PaginationParams? paginationParams,
});