Content constructor

Content({
  1. Key? key,
  2. required String title,
  3. required String content,
})

Implementation

Content({Key? key, required this.title, required this.content})
    : super(key: key);