toShortForm static method

String toShortForm(
  1. String clid
)

Generate a short URL-safe version of the CLID

Implementation

static String toShortForm(String clid) {
  final parsed = parse(clid);
  return parsed.shortForm;
}