AdaptiveDialog constructor

const AdaptiveDialog({
  1. Key? key,
  2. Widget? title,
  3. List<Widget> actions = const [],
  4. Widget? content,
  5. PreferedStyle preferedStyle = PreferedStyle.System,
})

Implementation

const AdaptiveDialog({
  super.key,
  this.title,
  this.actions = const [],
  this.content,
  this.preferedStyle = PreferedStyle.System,
});