FUIDialog constructor

const FUIDialog({
  1. Key? key,
  2. required String title,
  3. required Widget content,
  4. String? subtitle,
  5. IconData? icon,
  6. List<Widget> actions = const [],
  7. bool scrollable = false,
  8. double maxWidth = 520,
})

Implementation

const FUIDialog({
  super.key,
  required this.title,
  required this.content,
  this.subtitle,
  this.icon,
  this.actions = const [],
  this.scrollable = false,
  this.maxWidth = 520,
});