static String stringToCamelCase(String str) => str .split('_') .map((e) => '${e[0].toUpperCase()}${e.substring(1).toLowerCase()}') .join();