String kebabize(String str) { return str.replaceAllMapped(kebabCaseReg, (match) => '-${match[0]!.toLowerCase()}'); }