copyWith method
Implementation
AccountsBalanceGetRequestOptions copyWith(
{List<String>? accountIds, String? minLastUpdatedDatetime}) {
return AccountsBalanceGetRequestOptions(
accountIds: accountIds ?? this.accountIds,
minLastUpdatedDatetime:
minLastUpdatedDatetime ?? this.minLastUpdatedDatetime);
}