MomentCell constructor

const MomentCell(
  1. {Key? key,
  2. String? thumbnail,
  3. required String startDate,
  4. String? title,
  5. String? summary,
  6. required String semanticsLabel,
  7. required VoidCallback onPressed,
  8. bool expanded = false,
  9. required double offset}
)

Implementation

const MomentCell(
    {super.key,
    this.thumbnail,
    required this.startDate,
    this.title,
    this.summary,
    required this.semanticsLabel,
    required this.onPressed,
    this.expanded = false,
    required this.offset});