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