setPostList method Null safety

dynamic setPostList(
  1. List<Post> postList
)

Set the fetched List

Implementation

setPostList(List<Post> postList) {
  subredditPostTilesList = [];
  subredditPostTilesList = postList;
  notifyListeners();
}