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,
      );