copyWith method

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

Implementation

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