HeaderContents constructor

HeaderContents({
  1. String mainTitle = 'Main Title',
  2. String title = 'Title',
  3. String subtitle = 'Subtitle',
  4. Widget icon = const Icon(Icons.close, size: 32, color: Colors.white),
  5. required DDSAvatar avatar,
  6. VoidCallback? onIconTap,
})

Implementation

HeaderContents({
  this.mainTitle = 'Main Title',
  this.title = 'Title',
  this.subtitle = 'Subtitle',
  this.icon = const Icon(Icons.close, size: 32, color: Colors.white),
  required this.avatar,
  this.onIconTap,
});