BasicDialog constructor

const BasicDialog({
  1. Key? key,
  2. double? dialogHeight,
  3. double? dialogWidth,
  4. String? title,
  5. TextStyle? titleStyle,
  6. String? content,
  7. TextStyle? contentStyle,
  8. Color? iconColor,
})

Implementation

const BasicDialog(
    {Key? key,
    this.dialogHeight,
    this.dialogWidth,
    this.title,
    this.titleStyle,
    this.content,
    this.contentStyle,
    this.iconColor})
    : super(key: key);