Vimeo constructor

Vimeo({
  1. String? videoId,
  2. String? eventId,
  3. String? accessKey,
})

Implementation

Vimeo({
  this.videoId,
  this.eventId,
  this.accessKey,
})  : assert(videoId != null || eventId != null),
      assert(eventId != null && accessKey != null);