makePosts method
Implementation
void makePosts(List postList) async {
for (Map map in postList) {
Post post = Post(map);
posts[post.uri] = post;
}
}
void makePosts(List postList) async {
for (Map map in postList) {
Post post = Post(map);
posts[post.uri] = post;
}
}