QueryContractsByCodeResponse constructor
QueryContractsByCodeResponse({
- Iterable<
String> ? contracts, - PageResponse? pagination,
Implementation
factory QueryContractsByCodeResponse({
$core.Iterable<$core.String>? contracts,
$5.PageResponse? pagination,
}) {
final _result = create();
if (contracts != null) {
_result.contracts.addAll(contracts);
}
if (pagination != null) {
_result.pagination = pagination;
}
return _result;
}