fromGraphJson static method

Blogs fromGraphJson(
  1. Map<String, dynamic> json
)

Implementation

static Blogs fromGraphJson(Map<String, dynamic> json) {
  return Blogs(blogList: _getBlogList(json));
}