fixed type issue

This commit is contained in:
2024-12-02 18:21:26 +01:00
parent 7bb7037618
commit 7f9374a768

View File

@@ -21,7 +21,7 @@ class ContentProvider {
static List<dynamic> get experience => _content['experience']; static List<dynamic> get experience => _content['experience'];
static List<Map<String, dynamic>> get education => _content['education']; static List<dynamic> get education => _content['education'];
static List<Map<String, dynamic>> get skills => _content['skills']; static List<dynamic> get skills => _content['skills'];
} }