DefaultDialog constructor

const DefaultDialog({
  1. dynamic key,
  2. required dynamic title,
  3. dynamic subtitle,
  4. dynamic description,
  5. double? height,
  6. double? minHeight,
  7. double? width,
  8. bool isLoader = false,
  9. List? actions = const <Widget>[],
})

Implementation

const DefaultDialog({
  super.key,
  required this.title,
  this.subtitle,
  this.description,
  this.height,
  this.minHeight,
  this.width,
  this.isLoader = false,
  this.actions = const <Widget>[],
});