VideoDimension constructor
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;
}