toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final currentPage = this.currentPage;
final matches = this.matches;
final text = this.text;
final transcript = this.transcript;
final triggerEvent = this.triggerEvent;
final triggerIntent = this.triggerIntent;
return {
'currentPage': ?currentPage,
'matches': ?matches,
'text': ?text,
'transcript': ?transcript,
'triggerEvent': ?triggerEvent,
'triggerIntent': ?triggerIntent,
};
}