SupportLoadStateAdapter
constructor(resources: Resources, stateConfiguration: IStateLayoutConfig, mapper: (LoadState) -> IRecyclerItem = {
when (it) {
is LoadState.Loading -> SupportLoadingItem(stateConfiguration)
is LoadState.Error -> SupportErrorItem(it, stateConfiguration)
else -> SupportDefaultItem(it, stateConfiguration)
}
}, customSupportAnimator: AbstractAnimator? = ScaleAnimator(), supportAction: ISupportSelectionMode<Long>? = null)