TatweerBaseDialog constructor

const TatweerBaseDialog({
  1. Key? key,
  2. String? title,
  3. required Widget content,
  4. List<Widget>? actions,
  5. bool showCloseButton = true,
  6. Widget? titleWidget,
  7. EdgeInsetsGeometry? contentPadding,
  8. double? width,
  9. double? maxWidth,
  10. double? borderRadius,
  11. Color? backgroundColor,
})

Implementation

const TatweerBaseDialog({
  Key? key,
  this.title,
  required this.content,
  this.actions,
  this.showCloseButton = true,
  this.titleWidget,
  this.contentPadding,
  this.width,
  this.maxWidth,
  this.borderRadius,
  this.backgroundColor,
}) : super(key: key);