DefaultLayout constructor

const DefaultLayout({
  1. Key? key,
  2. PopupHeader? header,
  3. PopupContent? content,
  4. PopupConfig? config,
  5. List<Widget> buttons = const [],
  6. bool isScrollable = false,
  7. ScrollController? scrollController,
})

Implementation

const DefaultLayout({
  super.key,
  this.header,
  this.content,
  this.config,
  this.buttons = const [],
  this.isScrollable = false,
  this.scrollController,
});