YouTubeVideo.fromJson constructor

YouTubeVideo.fromJson(
  1. Map json_
)

Implementation

YouTubeVideo.fromJson(core.Map json_)
  : this(
      alternateLink: json_['alternateLink'] as core.String?,
      id: json_['id'] as core.String?,
      thumbnailUrl: json_['thumbnailUrl'] as core.String?,
      title: json_['title'] as core.String?,
    );