toJson method
Implementation
@override
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = super.toJson();
data["videoPath"] = this.videoPath;
data["duration"] = this.duration;
data["snapshotPath"] = this.snapshotPath;
return data;
}