CardHeader constructor

const CardHeader({
  1. required String title,
  2. String? subtitle,
  3. IconData? icon,
  4. Color? iconColor,
  5. double? iconSize,
  6. String? avatarUrl,
  7. double? avatarRadius,
  8. TextStyle? titleStyle,
  9. TextStyle? subtitleStyle,
})

Implementation

const CardHeader({
  required this.title,
  this.subtitle,
  this.icon,
  this.iconColor,
  this.iconSize,
  this.avatarUrl,
  this.avatarRadius,
  this.titleStyle,
  this.subtitleStyle,
});