WebApp.fromJson constructor
Parse from a json
Implementation
factory WebApp.fromJson(Map<String, dynamic> json) => WebApp(
shortName: json['short_name'],
title: json['title'],
description: json['description'],
photo: Photo.fromJson(json['photo']),
animation: json['animation'] == null
? null
: Animation.fromJson(json['animation']),
);