TranscodeSetting.fromJson constructor
TranscodeSetting.fromJson(
- Map json_
Implementation
TranscodeSetting.fromJson(core.Map json_)
: this(
enabledVideoFormats: (json_['enabledVideoFormats'] as core.List?)
?.map((value) => value as core.int)
.toList(),
kind: json_['kind'] as core.String?,
);