SearchTxsResult constructor
SearchTxsResult({
- Int64? totalCount,
- Int64? count,
- Int64? pageNumber,
- Int64? pageTotal,
- Int64? limit,
- Iterable<
TxResponse> ? txs,
Implementation
factory SearchTxsResult({
$fixnum.Int64? totalCount,
$fixnum.Int64? count,
$fixnum.Int64? pageNumber,
$fixnum.Int64? pageTotal,
$fixnum.Int64? limit,
$core.Iterable<TxResponse>? txs,
}) {
final _result = create();
if (totalCount != null) {
_result.totalCount = totalCount;
}
if (count != null) {
_result.count = count;
}
if (pageNumber != null) {
_result.pageNumber = pageNumber;
}
if (pageTotal != null) {
_result.pageTotal = pageTotal;
}
if (limit != null) {
_result.limit = limit;
}
if (txs != null) {
_result.txs.addAll(txs);
}
return _result;
}