FastDialog constructor

const FastDialog({
  1. Key? key,
  2. required List<Widget> children,
  3. bool applyMinimumConstraints = false,
  4. Color? backgroundColor,
  5. BoxConstraints? constraints,
  6. Color? titleColor,
  7. String? titleText,
  8. List<Widget>? actions,
})

Implementation

const FastDialog({
  super.key,
  required this.children,
  this.applyMinimumConstraints = false,
  super.backgroundColor,
  this.constraints,
  this.titleColor,
  this.titleText,
  super.actions,
});