ListTile constructor

const ListTile({
  1. Widget? leading,
  2. required Widget title,
  3. Widget? subtitle,
  4. Widget? trailing,
  5. EdgeInsetsGeometry? contentPadding,
})

ListTile API.

Implementation

const ListTile({
  this.leading,
  required this.title,
  this.subtitle,
  this.trailing,
  this.contentPadding,
});