FastDialog constructor

const FastDialog({
  1. Key? key,
  2. required String titleText,
  3. required List<Widget> children,
  4. Color? backgroundColor,
  5. Color? titleColor,
  6. List<Widget>? actions,
})

Implementation

const FastDialog({
  Key? key,
  required this.titleText,
  required this.children,
  super.backgroundColor,
  this.titleColor,
  super.actions,
}) : super(key: key);