Variant.fromJson constructor

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

Implementation

factory Variant.fromJson(Map<String, dynamic> json) => new Variant(
      bitrate: json["bitrate"] == null ? 0 : json["bitrate"],
      contentType: json["content_type"] == null ? null : json["content_type"],
      url: json["url"] == null ? null : json["url"],
    );