toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() => {
if (endDate != null) 'endDate': endDate!,
if (name != null) 'name': name!,
if (policy != null) 'policy': policy!,
if (startDate != null) 'startDate': startDate!,
};