VideoUrl.fromJson constructor

VideoUrl.fromJson(
  1. Map<String, dynamic> json
)

Implementation

VideoUrl.fromJson(Map<String, dynamic> json) {
  if (json["name"] is String) this.name = json["name"];
  if (json["videoUrl"] is String) this.videoUrl = json["videoUrl"];
}