FlatHeaderListTile constructor

const FlatHeaderListTile({
  1. Key? key,
  2. Widget? title,
  3. Widget? subtitle,
  4. Widget? trailing,
  5. VoidCallback? onTap,
  6. VoidCallback? onLongPress,
  7. EdgeInsets contentPadding = const EdgeInsets.symmetric(horizontal: 4.0),
})

Implementation

const FlatHeaderListTile({
  super.key,
  this.title,
  this.subtitle,
  this.trailing,
  this.onTap,
  this.onLongPress,
  this.contentPadding = const EdgeInsets.symmetric(horizontal: 4.0),
});