String snakeToPascal(String name) { return name .split("_") .map((e) => e[0].toUpperCase() + e.substring(1)) .toList() .join(''); }