toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final map = <String, dynamic>{};
  map['id'] = _id;
  map['message'] = _message;
  map['status'] = _status;
  map['created_at'] = _createdAt;
  return map;
}