VideoDimension constructor

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

Implementation

factory VideoDimension({
  $core.int? width,
  $core.int? height,
}) {
  final result = create();
  if (width != null) result.width = width;
  if (height != null) result.height = height;
  return result;
}