PlatformModalScaffold constructor

PlatformModalScaffold({
  1. Key? key,
  2. bool dismissible = true,
  3. bool isScrolling = false,
  4. Widget? title,
  5. bool automaticallyImplyLeading = true,
  6. required Widget body,
})

Implementation

PlatformModalScaffold({
  Key? key,
  this.dismissible = true,
  this.isScrolling = false,
  this.title,
  this.automaticallyImplyLeading = true,
  required this.body,
}) : super(key: key);