copyWithWrapped method

AccountsBalanceGetRequestOptions copyWithWrapped({
  1. Wrapped<List<String>?>? accountIds,
  2. Wrapped<String?>? minLastUpdatedDatetime,
})

Implementation

AccountsBalanceGetRequestOptions copyWithWrapped(
    {Wrapped<List<String>?>? accountIds,
    Wrapped<String?>? minLastUpdatedDatetime}) {
  return AccountsBalanceGetRequestOptions(
      accountIds: (accountIds != null ? accountIds.value : this.accountIds),
      minLastUpdatedDatetime: (minLastUpdatedDatetime != null
          ? minLastUpdatedDatetime.value
          : this.minLastUpdatedDatetime));
}