Content constructor

const Content({
  1. String? id,
  2. required String contentType,
})

Implementation

const Content({
  this.id,
  required this.contentType,
});