VideoDimensions
视频尺寸。
Dart
class VideoDimensions {
const VideoDimensions({this.width, this.height});
(name: 'width')
final int? width;
(name: 'height')
final int? height;
factory VideoDimensions.fromJson(Map<String, dynamic> json) =>
_$VideoDimensionsFromJson(json);
Map<String, dynamic> toJson() => _$VideoDimensionsToJson(this);
}
width
视频宽度,单位为像素。
height
视频高度,单位为像素。