AsyncQueryReasoningEngineResponse.fromJson constructor
AsyncQueryReasoningEngineResponse.fromJson(
- Object? j
Implementation
factory AsyncQueryReasoningEngineResponse.fromJson(Object? j) {
final json = j as Map<String, Object?>;
return AsyncQueryReasoningEngineResponse(
outputGcsUri: switch (json['outputGcsUri']) {
null => '',
Object $1 => decodeString($1),
},
);
}