String? getNote(String name) { final data = getAsset('$kGameNotesPath/$name.md'); if (data == null) return null; return utf8.decode(data); }