AddressTxResponse constructor
AddressTxResponse({})
Implementation
factory AddressTxResponse({
$0.ChainRef? blockchain,
$0.SingleAddress? address,
$1.UInt32Value? xpubIndex,
$core.String? txId,
$0.BlockInfo? block,
$core.bool? mempool,
$core.String? cursor,
$core.bool? removed,
$core.bool? failed,
$core.Iterable<Change>? changes,
$core.int? txIndexInBlock,
}) {
final result = create();
if (blockchain != null) result.blockchain = blockchain;
if (address != null) result.address = address;
if (xpubIndex != null) result.xpubIndex = xpubIndex;
if (txId != null) result.txId = txId;
if (block != null) result.block = block;
if (mempool != null) result.mempool = mempool;
if (cursor != null) result.cursor = cursor;
if (removed != null) result.removed = removed;
if (failed != null) result.failed = failed;
if (changes != null) result.changes.addAll(changes);
if (txIndexInBlock != null) result.txIndexInBlock = txIndexInBlock;
return result;
}