FXAlertDialog constructor

const FXAlertDialog({
  1. Key? key,
  2. required String title,
  3. String? content,
  4. required Color buttonColor,
  5. dynamic onOK()?,
})

Implementation

const FXAlertDialog({
  Key? key,
  required this.title,
  this.content,
  required this.buttonColor,
  this.onOK,
}) : super(key: key);