LayoutViewport.fromJson constructor
Implementation
factory LayoutViewport.fromJson(Map<String, dynamic> json) {
return LayoutViewport(
pageX: json['pageX'] as int,
pageY: json['pageY'] as int,
clientWidth: json['clientWidth'] as int,
clientHeight: json['clientHeight'] as int,
);
}