AnimatedListTile constructor

const AnimatedListTile({
  1. Key? key,
  2. required String title,
  3. String? subtitle,
  4. IconData? leading,
  5. Widget? trailing,
  6. VoidCallback? onTap,
  7. Color? color,
})

Implementation

const AnimatedListTile({
  super.key,
  required this.title,
  this.subtitle,
  this.leading,
  this.trailing,
  this.onTap,
  this.color,
});