toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final requestId = this.requestId;
final results = this.results;
final speechAdaptationInfo = this.speechAdaptationInfo;
final totalBilledTime = this.totalBilledTime;
final usingLegacyModels = this.usingLegacyModels;
return {
'requestId': ?requestId,
'results': ?results,
'speechAdaptationInfo': ?speechAdaptationInfo,
'totalBilledTime': ?totalBilledTime,
'usingLegacyModels': ?usingLegacyModels,
};
}