VideoSuggestionsTagSuggestion.fromJson constructor

VideoSuggestionsTagSuggestion.fromJson(
  1. Map json_
)

Implementation

VideoSuggestionsTagSuggestion.fromJson(core.Map json_)
    : this(
        categoryRestricts: json_.containsKey('categoryRestricts')
            ? (json_['categoryRestricts'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
        tag: json_.containsKey('tag') ? json_['tag'] as core.String : null,
      );