normalizeFirstLetterKeys function
Implementation
Map<String, dynamic> normalizeFirstLetterKeys(Map<String, dynamic> map) {
return map.map((key, value) {
final normalizedKey = key[0].toLowerCase() + key.substring(1);
return MapEntry(normalizedKey, value);
});
}