QueryInterchainAccountResponse.fromJson constructor
Implementation
factory QueryInterchainAccountResponse.fromJson(Map<String, dynamic> json) {
return QueryInterchainAccountResponse(
interchainAccountAddress: json.valueAsString<String?>(
'interchain_account_address',
acceptCamelCase: true,
),
);
}