copyWithWrapped method

OperationStatus copyWithWrapped({
  1. Wrapped<String>? address,
  2. Wrapped<String>? balanceDeltas,
  3. Wrapped<String>? coins,
  4. Wrapped<String>? exitCode,
  5. Wrapped<String>? logicalTime,
  6. Wrapped<String>? queryId,
  7. Wrapped<String>? txHash,
})

Implementation

OperationStatus copyWithWrapped(
    {Wrapped<String>? address,
    Wrapped<String>? balanceDeltas,
    Wrapped<String>? coins,
    Wrapped<String>? exitCode,
    Wrapped<String>? logicalTime,
    Wrapped<String>? queryId,
    Wrapped<String>? txHash}) {
  return OperationStatus(
      address: (address != null ? address.value : this.address),
      balanceDeltas:
          (balanceDeltas != null ? balanceDeltas.value : this.balanceDeltas),
      coins: (coins != null ? coins.value : this.coins),
      exitCode: (exitCode != null ? exitCode.value : this.exitCode),
      logicalTime:
          (logicalTime != null ? logicalTime.value : this.logicalTime),
      queryId: (queryId != null ? queryId.value : this.queryId),
      txHash: (txHash != null ? txHash.value : this.txHash));
}