toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final effectsProfileId = this.effectsProfileId;
final pitch = this.pitch;
final pronunciations = this.pronunciations;
final speakingRate = this.speakingRate;
final voice = this.voice;
final volumeGainDb = this.volumeGainDb;
return {
'effectsProfileId': ?effectsProfileId,
'pitch': ?pitch,
'pronunciations': ?pronunciations,
'speakingRate': ?speakingRate,
'voice': ?voice,
'volumeGainDb': ?volumeGainDb,
};
}