variablize method
Converts this string to a variable name (camelCase, no special chars).
Implementation
String variablize() => uncapitalize().replaceAll(RegExp(r'[^a-zA-Z0-9]'), '');
Converts this string to a variable name (camelCase, no special chars).
String variablize() => uncapitalize().replaceAll(RegExp(r'[^a-zA-Z0-9]'), '');