videoByUrl method

dynamic videoByUrl(
  1. String videoUrl
)

Implementation

videoByUrl(String videoUrl) {
  var replayObject = {
    "type": "video",
    "video": {"link": videoUrl}
  };
  return replayObject;
}