copyWithWrapped method

DepositSwitchCreateResponse copyWithWrapped({
  1. Wrapped<String>? depositSwitchId,
  2. Wrapped<String>? requestId,
})

Implementation

DepositSwitchCreateResponse copyWithWrapped(
    {Wrapped<String>? depositSwitchId, Wrapped<String>? requestId}) {
  return DepositSwitchCreateResponse(
      depositSwitchId: (depositSwitchId != null
          ? depositSwitchId.value
          : this.depositSwitchId),
      requestId: (requestId != null ? requestId.value : this.requestId));
}