ListCell constructor

const ListCell(
  1. {Key? key,
  2. String? thumbnailUrl,
  3. Widget? subtitle,
  4. Widget? subtitle2,
  5. Widget? trailing,
  6. required Widget title,
  7. GestureTapCallback? onTap,
  8. double? minHeight = 100.0,
  9. double imageScale = 1.0,
  10. String? semanticLabel,
  11. String? semanticValue,
  12. bool circular = true}
)

Implementation

const ListCell(
    {super.key,
    this.thumbnailUrl,
    this.subtitle,
    this.subtitle2,
    this.trailing,
    required this.title,
    this.onTap,
    this.minHeight = 100.0,
    this.imageScale = 1.0,
    this.semanticLabel,
    this.semanticValue,
    this.circular = true});