VideoContentDetailsRegionRestriction.fromJson constructor
VideoContentDetailsRegionRestriction.fromJson(
- Map json_
Implementation
VideoContentDetailsRegionRestriction.fromJson(core.Map json_)
: this(
allowed: (json_['allowed'] as core.List?)
?.map((value) => value as core.String)
.toList(),
blocked: (json_['blocked'] as core.List?)
?.map((value) => value as core.String)
.toList(),
);