constantize method
Converts this string to a constant name (UPPER_SNAKE_CASE).
Implementation
String constantize() =>
toUpperCase().replaceAll(RegExp(r'[^a-zA-Z0-9]'), '_');
Converts this string to a constant name (UPPER_SNAKE_CASE).
String constantize() =>
toUpperCase().replaceAll(RegExp(r'[^a-zA-Z0-9]'), '_');