toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final recordingConfig = this.recordingConfig;
  final smartNotesConfig = this.smartNotesConfig;
  final transcriptionConfig = this.transcriptionConfig;
  return {
    'recordingConfig': ?recordingConfig,
    'smartNotesConfig': ?smartNotesConfig,
    'transcriptionConfig': ?transcriptionConfig,
  };
}