MonthlyUpdateItem constructor

const MonthlyUpdateItem({
  1. required String title,
  2. required String pdfUrl,
  3. required String jpgUrl,
  4. required String postedDate,
})

Implementation

const MonthlyUpdateItem({
  required this.title,
  required this.pdfUrl,
  required this.jpgUrl,
  required this.postedDate,
});