TimelineParams constructor

TimelineParams(
  1. {bool extendBodyBehindAppBar = true,
  2. bool implyLeading = false,
  3. String? title,
  4. ShowFiltersDelegate? showFiltersDelegate,
  5. bool noAppBar = false,
  6. List<Widget> actions = const <Widget>[],
  7. required Future onFetchData(
    1. BuildContext context
    ),
  8. required bool onStateChange(
    1. BuildContext context
    ),
  9. required Future onInitialize(
    1. BuildContext context
    ),
  10. bool noPagePadding = false,
  11. String? shareTitle,
  12. String? shareMessage,
  13. FilterState filterState(
    1. BuildContext
    )?,
  14. Object? item,
  15. WidgetBuilder? header,
  16. WidgetBuilder? footer,
  17. bool filterable = true,
  18. bool favoriteEnabled = false,
  19. bool sharable = true,
  20. Object? shareButtonHeroTag = "share_from_timeline"}
)

Implementation

TimelineParams({
  this.extendBodyBehindAppBar = true,
  this.implyLeading = false,
  this.title,
  this.showFiltersDelegate,
  this.noAppBar = false,
  this.actions = const <Widget>[],
  required this.onFetchData,
  required this.onStateChange,
  required this.onInitialize,
  this.noPagePadding = false,
  this.shareTitle,
  this.shareMessage,
  this.filterState,
  this.item,
  this.header,
  this.footer,
  this.filterable = true,
  this.favoriteEnabled = false,
  this.sharable = true,
  this.shareButtonHeroTag = "share_from_timeline",
});