MasterDetailTab constructor

const MasterDetailTab({
  1. Key? key,
  2. Bar? header,
  3. required Widget child,
  4. required IconData icon,
  5. String? label,
  6. Widget? trailing,
  7. String? subLabel,
  8. VoidCallback? onTap,
  9. bool selected = false,
})

Implementation

const MasterDetailTab({
  super.key,
  this.header,
  required this.child,
  required this.icon,
  this.label,
  this.trailing,
  this.subLabel,
  this.onTap,
  this.selected = false,
});