VideoSize constructor

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

Implementation

VideoSize({
  int? width,
  int? height,
})  : width = width ?? -1,
      height = height ?? -1;