EWListTile constructor

const EWListTile({
  1. Key? key,
  2. String overlineText = '',
  3. String title = '',
  4. String subtitle = '',
  5. bool showListItemDivider = false,
  6. bool isThreeLine = false,
  7. TextStyle? titleStyle,
  8. void onTap()?,
  9. Widget? trailingWidget,
  10. Widget? leading,
})

Implementation

const EWListTile({
  super.key,
  this.overlineText = '',
  this.title = '',
  this.subtitle = '',
  this.showListItemDivider = false,
  this.isThreeLine = false,
  this.titleStyle,
  this.onTap,
  this.trailingWidget,
  this.leading,
});