copyWithWrapped method
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));
}