VideoClip constructor

VideoClip(
  1. String identifier,
  2. String videoURI, {
  3. String? artist,
  4. String? title,
  5. String? thumbnailURI,
})

Creates a new VideoClip.

Implementation

VideoClip(String identifier, this.videoURI,
    {String? artist, String? title, this.thumbnailURI})
    : super(identifier, title: title, artist: artist);