// GENERATED CODE - DO NOT MODIFY BY HAND part of 'analyze_choice_item.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** AnalyzeChoiceItem _$AnalyzeChoiceItemFromJson(Map json) => AnalyzeChoiceItem( json['delta'] == null ? null : AnalyzeChoiceItemDelta.fromJson( json['delta'] as Map, ), (json['index'] as num?)?.toInt(), json['finish_reason'] as String?, ); Map _$AnalyzeChoiceItemToJson(AnalyzeChoiceItem instance) => { 'delta': instance.delta, 'index': instance.index, 'finish_reason': instance.finishReason, };