toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'id'] = id;
if (rev != null) {
json[r'rev'] = rev;
}
if (deletionDate != null) {
json[r'deletionDate'] = deletionDate;
}
if (from != null) {
json[r'from'] = from;
}
if (to != null) {
json[r'to'] = to;
}
if (productId != null) {
json[r'productId'] = productId;
}
if (code != null) {
json[r'code'] = code;
}
if (name != null) {
json[r'name'] = name;
}
if (noGenericPrescriptionReason != null) {
json[r'noGenericPrescriptionReason'] = noGenericPrescriptionReason;
}
if (noSwitchReason != null) {
json[r'noSwitchReason'] = noSwitchReason;
}
return json;
}