toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final code = this.code;
  final displayName = this.displayName;
  final healthRecommendations = this.healthRecommendations;
  final inSeason = this.inSeason;
  final indexInfo = this.indexInfo;
  return {
    'code': ?code,
    'displayName': ?displayName,
    'healthRecommendations': ?healthRecommendations,
    'inSeason': ?inSeason,
    'indexInfo': ?indexInfo,
  };
}