VideoContent.fromJson constructor

VideoContent.fromJson(
  1. Map json_
)

Implementation

VideoContent.fromJson(core.Map json_)
    : this(
        videoUrl: json_.containsKey('videoUrl')
            ? json_['videoUrl'] as core.String
            : null,
        videoVastXml: json_.containsKey('videoVastXml')
            ? json_['videoVastXml'] as core.String
            : null,
      );