PlatformPostListWithProgress constructor

const PlatformPostListWithProgress({
  1. Key? key,
  2. required List<String> ids,
  3. bool shouldReloadProfileImage = false,
  4. Color? colorRefreshIndicator,
  5. Alignment? progressAlignment,
  6. Color? progressMainColor,
  7. Color? progressBackgroundColor,
  8. WidgetBuilder? noMoreItemsIndicatorBuilder,
  9. WidgetBuilder? noFoundItemsIndicatorBuilder,
  10. OnInitPost? onInitPost,
  11. OnTapPost? onTapPost,
  12. OnRefresh? onRefresh,
  13. OnSwipeLeft? onSwipeLeft,
  14. OnReloadProfileImage? onReloadProfileImage,
  15. OnChangedContentQuality? onChangedContentQuality,
})

Implementation

const PlatformPostListWithProgress({
  Key? key,
  required this.ids,
  this.shouldReloadProfileImage = false,
  this.colorRefreshIndicator,
  this.progressAlignment,
  this.progressMainColor,
  this.progressBackgroundColor,
  this.noMoreItemsIndicatorBuilder,
  this.noFoundItemsIndicatorBuilder,
  this.onInitPost,
  this.onTapPost,
  this.onRefresh,
  this.onSwipeLeft,
  this.onReloadProfileImage,
  this.onChangedContentQuality,
}) : super(key: key);