UserId.liveramp constructor

UserId.liveramp(
  1. String userId
)

Creates a UserId object for liveramp with the given userId.

Implementation

factory UserId.liveramp(String userId) {
  return UserId(userId: userId, source: UserIdSource.liveramp);
}