PlatformListTile constructor

PlatformListTile({
  1. required Widget title,
  2. Widget? leading,
  3. Widget? subtitle,
  4. Widget? trailing,
  5. VoidCallback? onTap,
  6. PlatformBuilder<MaterialListTileData>? material,
  7. PlatformBuilder<CupertinoListTileData>? cupertino,
  8. Key? key,
})

Implementation

PlatformListTile({
  required this.title,
  this.leading,
  this.subtitle,
  this.trailing,
  this.onTap,
  this.material,
  this.cupertino,
  super.key,
});