Content constructor

Content({
  1. String? title,
  2. String? body,
})

Implementation

Content({
  this.title,
  this.body,
});