copyWith method

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

Implementation

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