feat : EvenDetails --> Add Animator with widget

This commit is contained in:
Yaël Perret
2025-09-13 17:53:24 +02:00
parent 8067125921
commit 6429854028
3 changed files with 89 additions and 3 deletions

View File

@@ -32,4 +32,17 @@ class Post {
required this.title,
required this.content,
});
}
class Animator {
final String id;
final String name;
final String content;
final String authorImageUrl = 'https://placehold.co/400x400/png';
Animator({
required this.id,
required this.name,
required this.content,
});
}