VideoView constructor

const VideoView({
  1. Key? key,
  2. double? width,
  3. double? height,
  4. String? viewId,
  5. void onViewCreated()?,
})

Implementation

const VideoView({
  super.key,
  this.width,
  this.height,
  this.viewId,
  this.onViewCreated,
});