QueryContractsByCodeResponse constructor

QueryContractsByCodeResponse({
  1. Iterable<String>? contracts,
  2. 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;
}