QueryInterchainAccountFromAddressRequest.fromJson constructor
Implementation
factory QueryInterchainAccountFromAddressRequest.fromJson(
Map<String, dynamic> json,
) {
return QueryInterchainAccountFromAddressRequest(
owner: json.valueAsString<String?>('owner', acceptCamelCase: true),
connectionId: json.valueAsString<String?>(
'connection_id',
acceptCamelCase: true,
),
);
}