Meta.fromJson constructor

Meta.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory Meta.fromJson(Map<String, dynamic> json) => Meta(
      pageInfo: PageInfo.fromJson(json["page_info"]),
    );