factory VideoItem.fromJson(Map<String, dynamic> json) { return VideoItem( path: json["path"], duration: json["duration"], width: json["width"], height: json["height"]); }