TimelineScreen constructor

const TimelineScreen({
  1. String userId = 'test_user',
  2. TimelineService? service,
  3. TimelineOptions options = const TimelineOptions(),
  4. dynamic onPostTap(
    1. TimelinePost
    )?,
  5. ScrollController? scrollController,
  6. dynamic onUserTap(
    1. String userId
    )?,
  7. List<TimelinePost>? posts,
  8. String? timelineCategory,
  9. Widget postWidgetBuilder(
    1. TimelinePost post
    )?,
  10. bool filterEnabled = false,
  11. Key? key,
})

Implementation

const TimelineScreen({
  this.userId = 'test_user',
  this.service,
  this.options = const TimelineOptions(),
  this.onPostTap,
  this.scrollController,
  this.onUserTap,
  this.posts,
  this.timelineCategory,
  this.postWidgetBuilder,
  this.filterEnabled = false,
  super.key,
});