addPostTileInList method Null safety

dynamic addPostTileInList(
  1. Post newPost
)

Add a post to the fetched List

Implementation

addPostTileInList(Post newPost) {
  postTilesList.add(newPost);
  notifyListeners();
}