export './get.dart'; String toKebabCase(String text) { return text.replaceAllMapped(RegExp(r'([A-Z])'), (match) { return '-${match.group(1)?.toLowerCase()}'; }); }