Page.fromJson constructor

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

Implementation

factory Page.fromJson(Map<String, dynamic> json) => Page(
      pageName: json["page_name"],
      pageId: json["page_id"],
      pageSet: json["page_set"],
      pageExists: json["page_exists"],
      pageVisible: json["page_visible"],
      shortcode: json["shortcode"],
      shortcodeRequired: json["shortcode_required"],
      shortcodePresent: json["shortcode_present"],
    );