Comment constructor

Comment(
  1. int id,
  2. String userId,
  3. String? text,
  4. DateTime time,
  5. Map<String, dynamic>? resource,
  6. String? byId,
  7. DateTime? edited,
  8. String? image,
)

Implementation

Comment(this.id, this.userId, this.text, this.time, this.resource, this.byId,
    this.edited, this.image);