Comment constructor

Comment({
  1. String? body,
  2. String? createTime,
  3. Actor? creator,
  4. String? name,
  5. String? plainTextBody,
})

Implementation

Comment({
  this.body,
  this.createTime,
  this.creator,
  this.name,
  this.plainTextBody,
});