VideoDimensions constructor

const VideoDimensions({
  1. int? width,
  2. int? height,
})

Constructs the VideoDimensions.

Implementation

const VideoDimensions({
  this.width,
  this.height,
});