copyWith method

AccountsGetRequestOptions copyWith({
  1. List<String>? accountIds,
})

Implementation

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