toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final phoneticEncoding = this.phoneticEncoding;
final phrase = this.phrase;
final pronunciation = this.pronunciation;
return {
'phoneticEncoding': ?phoneticEncoding,
'phrase': ?phrase,
'pronunciation': ?pronunciation,
};
}