camelCase property

String get camelCase

Implementation

String get camelCase {
  return replaceAllMapped(RegExp(r'_(\w)'), (m) => m.group(1)!.toUpperCase());
}