DialogHeader constructor

const DialogHeader({
  1. Key? key,
  2. required String title,
  3. String? subtitle,
  4. Widget? leading,
  5. Widget? trailing,
  6. EdgeInsetsGeometry? padding,
})

Implementation

const DialogHeader({
  super.key,
  required this.title,
  this.subtitle,
  this.leading,
  this.trailing,
  this.padding,
});