createWithProvider static method

UserIdList createWithProvider(
  1. List<String> ids,
  2. String providerId
)

Create UserIdList ids and provider id. ids User Ids. providerId Provider Id.

Implementation

static UserIdList createWithProvider(List<String> ids, String providerId) {
  UserIdList instance = new UserIdList();
  instance._ids = ids;
  instance._providerId = providerId;
  return instance;
}