WuiListTile constructor

WuiListTile({
  1. Key? key,
  2. void onTap()?,
  3. Widget? title,
  4. Widget? subtitle,
  5. Widget? leading,
  6. Widget? trailing,
  7. String borderMode = 'none',
})

Implementation

WuiListTile({ Key? key,
  this.onTap,
  this.title,
  this.subtitle,
  this.leading,
  this.trailing,
  this.borderMode = 'none'
}) : super(key: key);