PageBlockMap.fromJson constructor
Parse from a json
Implementation
factory PageBlockMap.fromJson(Map<String, dynamic> json) => PageBlockMap(
location: Location.fromJson(json['location']),
zoom: json['zoom'],
width: json['width'],
height: json['height'],
caption: PageBlockCaption.fromJson(json['caption']),
);