generateRandomCLID static method

String generateRandomCLID(
  1. EntityType type
)

Generate a random UUID v4 for user content

Implementation

static String generateRandomCLID(EntityType type) {
  final uuid = _uuid.v4();
  return 'clid:v1:${type.value}:$uuid';
}