Present constructor

Present({
  1. required AnalyticsIdentifiable analyticsIdentifiable,
  2. bool animated = true,
  3. ValueKey<String>? navigationKey,
  4. PresentTransition transition = .standard,
  5. bool skipKeyboardDismissal = false,
})

Implementation

Present({
  required super.analyticsIdentifiable,
  super.animated,
  super.navigationKey,
  this.transition = .standard,
  super.skipKeyboardDismissal,
});