QueryAnalyzeCodeRequest.fromJson constructor
Implementation
factory QueryAnalyzeCodeRequest.fromJson(Map<String, dynamic> json) {
return QueryAnalyzeCodeRequest(
codeHash: json.valueAsBytes<List<int>?>(
'code_hash',
acceptCamelCase: true,
encoding: StringEncoding.base64,
),
);
}