MyoroModalConfiguration<T> constructor

const MyoroModalConfiguration<T>({
  1. bool barrierDismissable = barrierDismissableDefaultValue,
  2. bool useRootNavigator = useRootNavigatorDefaultValue,
  3. MyoroModalOnClosed<T>? onClosed,
  4. String title = titleDefaultValue,
  5. bool showCloseButton = showCloseButtonDefaultValue,
})

Implementation

const MyoroModalConfiguration({
  this.barrierDismissable = barrierDismissableDefaultValue,
  this.useRootNavigator = useRootNavigatorDefaultValue,
  this.onClosed,
  this.title = titleDefaultValue,
  this.showCloseButton = showCloseButtonDefaultValue,
});