QueryInterchainAccountFromAddressRequest.fromJson constructor

QueryInterchainAccountFromAddressRequest.fromJson(
  1. Map<String, dynamic> json
)

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,
    ),
  );
}