StreamsAvc.fromJson constructor

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

Implementation

StreamsAvc.fromJson(Map<String, dynamic> json) {
  if (json["profile"] is String) this.profile = json["profile"];
  if (json["quality"] is String) this.quality = json["quality"];
  if (json["id"] is String) this.id = json["id"];
  if (json["fps"] is int) this.fps = json["fps"];
}