QueryAnalyzeCodeResponse.fromJson constructor
Implementation
factory QueryAnalyzeCodeResponse.fromJson(Map<String, dynamic> json) {
return QueryAnalyzeCodeResponse(
hasIbcEntryPoints: json.valueAsBool<bool?>(
'has_ibc_entry_points',
acceptCamelCase: true,
),
requiredFeatures: json.valueAsString<String?>(
'required_features',
acceptCamelCase: true,
),
);
}