DefaultDeskHeader constructor

const DefaultDeskHeader({
  1. Key? key,
  2. String? name,
  3. required String title,
  4. String? subtitle,
  5. IconData? icon,
})

Implementation

const DefaultDeskHeader({
  super.key,
  this.name,
  required this.title,
  this.subtitle,
  this.icon,
});