FXAlertDialog constructor

const FXAlertDialog({
  1. Key? key,
  2. required String title,
  3. Color titleColor = Colors.black,
  4. double? contentFontSize,
  5. double? buttonFontSize,
  6. String? content,
  7. Color buttonColor = Colors.grey,
  8. dynamic onOK()?,
})

Implementation

const FXAlertDialog({
  Key? key,
  required this.title,
  this.titleColor = Colors.black,
  this.contentFontSize,
  this.buttonFontSize,
  this.content,
  this.buttonColor = Colors.grey,
  this.onOK,
}) : super(key: key);