TimelinePostCreationScreen constructor

const TimelinePostCreationScreen({
  1. required String userId,
  2. required dynamic onPostCreated(
    1. TimelinePost
    ),
  3. required TimelineService service,
  4. required TimelineOptions options,
  5. String? postCategory,
  6. void onPostOverview(
    1. TimelinePost
    )?,
  7. bool enablePostOverviewScreen = false,
  8. Key? key,
})

Implementation

const TimelinePostCreationScreen({
  required this.userId,
  required this.onPostCreated,
  required this.service,
  required this.options,
  this.postCategory,
  this.onPostOverview,
  this.enablePostOverviewScreen = false,
  super.key,
});