Comments constructor

Comments({
  1. String? id,
  2. String? message,
  3. String? status,
  4. String? createdAt,
})

Implementation

Comments({
    String? id,
    String? message,
    String? status,
    String? createdAt,}){
  _id = id;
  _message = message;
  _status = status;
  _createdAt = createdAt;
}