String underscoreToCamelCase(String text) { return text.split('_').map((e) => capitalize(e)).join(); }