VideoCategorySnippet.fromJson constructor
VideoCategorySnippet.fromJson(
- Map json_
Implementation
VideoCategorySnippet.fromJson(core.Map json_)
: this(
assignable: json_.containsKey('assignable')
? json_['assignable'] as core.bool
: null,
channelId: json_.containsKey('channelId')
? json_['channelId'] as core.String
: null,
title:
json_.containsKey('title') ? json_['title'] as core.String : null,
);