toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (code != null) 'code': code!,
  if (displayName != null) 'displayName': displayName!,
  if (healthRecommendations != null)
    'healthRecommendations': healthRecommendations!,
  if (inSeason != null) 'inSeason': inSeason!,
  if (indexInfo != null) 'indexInfo': indexInfo!,
};