parseEntityViewInfoPageData function

PageData<EntityViewInfo> parseEntityViewInfoPageData(
  1. Map<String, dynamic> json
)

Implementation

PageData<EntityViewInfo> parseEntityViewInfoPageData(
    Map<String, dynamic> json) {
  return PageData.fromJson(json, (json) => EntityViewInfo.fromJson(json));
}