AddressTxRequest constructor
AddressTxRequest({
- ChainRef? blockchain,
- AnyAddress? address,
- String? cursor,
- int? limit,
- bool? onlyUnspent,
Implementation
factory AddressTxRequest({
$0.ChainRef? blockchain,
$0.AnyAddress? address,
$core.String? cursor,
$core.int? limit,
$core.bool? onlyUnspent,
}) {
final result = create();
if (blockchain != null) result.blockchain = blockchain;
if (address != null) result.address = address;
if (cursor != null) result.cursor = cursor;
if (limit != null) result.limit = limit;
if (onlyUnspent != null) result.onlyUnspent = onlyUnspent;
return result;
}