RequestDialog constructor

const RequestDialog({
  1. required String title,
  2. String? description,
  3. String? bottomText,
  4. Widget? bottomWidget,
  5. Key? key,
})

Implementation

const RequestDialog({
  required this.title,
  this.description,
  this.bottomText,
  this.bottomWidget,
  Key? key,
}) : super(key: key);