toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final crossReaction = this.crossReaction;
  final family = this.family;
  final picture = this.picture;
  final pictureCloseup = this.pictureCloseup;
  final season = this.season;
  final specialColors = this.specialColors;
  final specialShapes = this.specialShapes;
  final type = this.type;
  return {
    'crossReaction': ?crossReaction,
    'family': ?family,
    'picture': ?picture,
    'pictureCloseup': ?pictureCloseup,
    'season': ?season,
    'specialColors': ?specialColors,
    'specialShapes': ?specialShapes,
    'type': ?type,
  };
}