toJson method
Implementation
Map<String, dynamic> toJson() {
final map = <String, dynamic>{};
map['status'] = status;
map['notes'] = notes;
if (createdAtDateTime != null) {
map['created_at_date_time'] = createdAtDateTime?.toJson();
}
return map;
}