toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final disableHighLatencyFeaturesSyncDelivery =
this.disableHighLatencyFeaturesSyncDelivery;
final enableAsyncToolCall = this.enableAsyncToolCall;
final featureConfigs = this.featureConfigs;
final generators = this.generators;
final groupSuggestionResponses = this.groupSuggestionResponses;
final skipEmptyEventBasedSuggestion = this.skipEmptyEventBasedSuggestion;
final useUnredactedConversationData = this.useUnredactedConversationData;
return {
'disableHighLatencyFeaturesSyncDelivery':
?disableHighLatencyFeaturesSyncDelivery,
'enableAsyncToolCall': ?enableAsyncToolCall,
'featureConfigs': ?featureConfigs,
'generators': ?generators,
'groupSuggestionResponses': ?groupSuggestionResponses,
'skipEmptyEventBasedSuggestion': ?skipEmptyEventBasedSuggestion,
'useUnredactedConversationData': ?useUnredactedConversationData,
};
}