RecentDiaryCardsBox constructor

const RecentDiaryCardsBox({
  1. Key? key,
  2. required List<DiaryCard> cards,
  3. required void onViewPage(
    1. String entryId
    ),
  4. required VoidCallback onRefresh,
})

Creates a RecentDiaryCardsBox showing a list of recent diary entries.

Implementation

const RecentDiaryCardsBox({
  super.key,
  required this.cards,
  required this.onViewPage,
  required this.onRefresh,
});