VideoSuggestions.fromJson constructor
VideoSuggestions.fromJson(
- Map json_
Implementation
VideoSuggestions.fromJson(core.Map json_)
: this(
editorSuggestions: (json_['editorSuggestions'] as core.List?)
?.map((value) => value as core.String)
.toList(),
processingErrors: (json_['processingErrors'] as core.List?)
?.map((value) => value as core.String)
.toList(),
processingHints: (json_['processingHints'] as core.List?)
?.map((value) => value as core.String)
.toList(),
processingWarnings: (json_['processingWarnings'] as core.List?)
?.map((value) => value as core.String)
.toList(),
tagSuggestions: (json_['tagSuggestions'] as core.List?)
?.map((value) => VideoSuggestionsTagSuggestion.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
);