toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (day != null) 'day': day!,
      if (month != null) 'month': month!,
      if (year != null) 'year': year!,
    };