copyWithWrapped method

TransferMigrateAccountResponse copyWithWrapped({
  1. Wrapped<String>? accessToken,
  2. Wrapped<String>? accountId,
  3. Wrapped<String>? requestId,
})

Implementation

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