detypify method

String detypify()

Implementation

String detypify() {
  // need to re-join with # in case there were other #s in the id
  return (split('#')..removeAt(0)).join('#');
}