TransactionOutputAddress constructor
TransactionOutputAddress({
- int? network,
- int? ledger,
- int? index,
- TransactionId? id,
Implementation
factory TransactionOutputAddress({
$core.int? network,
$core.int? ledger,
$core.int? index,
$2.TransactionId? id,
}) {
final _result = create();
if (network != null) {
_result.network = network;
}
if (ledger != null) {
_result.ledger = ledger;
}
if (index != null) {
_result.index = index;
}
if (id != null) {
_result.id = id;
}
return _result;
}