Content constructor

const Content({
  1. Key? key,
  2. required String id,
  3. required String date,
  4. required String time,
  5. required String image,
})

Implementation

const Content(
{Key? key,
required this.id,
required this.date,
required this.time,
required this.image})
: super(key: key);