TransactionOutputAddress constructor

TransactionOutputAddress({
  1. int? network,
  2. int? ledger,
  3. int? index,
  4. TransactionId? id,
})

Implementation

factory TransactionOutputAddress({
  $core.int? network,
  $core.int? ledger,
  $core.int? index,
  $10.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;
}