PanelBar constructor

PanelBar({
  1. Key? key,
  2. Widget? title,
  3. Widget? subtitle,
  4. Widget? action,
  5. Widget? icon,
})

Implementation

PanelBar({
  Key? key,
  this.title,
  this.subtitle,
  this.action,
  this.icon,
}) : super(key: key);