TappableListTile constructor

const TappableListTile({
  1. Key? key,
  2. ButtonState<Color>? tileColor,
  3. ButtonState<ShapeBorder>? shape,
  4. Widget? leading,
  5. Widget? title,
  6. Widget? subtitle,
  7. bool isThreeLine = false,
  8. VoidCallback? onTap,
  9. FocusNode? focusNode,
  10. bool autofocus = false,
  11. EdgeInsetsGeometry contentPadding = kDefaultContentPadding,
})

Implementation

const TappableListTile({
  Key? key,
  this.tileColor,
  this.shape,
  this.leading,
  this.title,
  this.subtitle,
  this.isThreeLine = false,
  this.onTap,
  this.focusNode,
  this.autofocus = false,
  this.contentPadding = kDefaultContentPadding,
}) : super(key: key);