toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final conjugations = this.conjugations;
  final definitions = this.definitions;
  final partOfSpeech = this.partOfSpeech;
  final pronunciation = this.pronunciation;
  final pronunciationUrl = this.pronunciationUrl;
  final source = this.source;
  final syllabification = this.syllabification;
  final synonyms = this.synonyms;
  return {
    'conjugations': ?conjugations,
    'definitions': ?definitions,
    'partOfSpeech': ?partOfSpeech,
    'pronunciation': ?pronunciation,
    'pronunciationUrl': ?pronunciationUrl,
    'source': ?source,
    'syllabification': ?syllabification,
    'synonyms': ?synonyms,
  };
}