TimelinePostScreen constructor

const TimelinePostScreen({
  1. required String userId,
  2. required TimelineService service,
  3. required TimelineOptions options,
  4. required TimelinePost post,
  5. required VoidCallback onPostDelete,
  6. bool? isOverviewScreen = false,
  7. dynamic onUserTap(
    1. String userId
    )?,
  8. Key? key,
})

Implementation

const TimelinePostScreen({
  required this.userId,
  required this.service,
  required this.options,
  required this.post,
  required this.onPostDelete,
  this.isOverviewScreen = false,
  this.onUserTap,
  super.key,
});