BasicDialog constructor

BasicDialog(
  1. {required String title,
  2. required String description,
  3. String? headerImage,
  4. List<DialogButton>? buttons}
)

Implementation

BasicDialog(
    {required this.title,
    required this.description,
    this.headerImage,
    this.buttons});