VideoDimensions
Video dimensions.
class VideoDimensions {
const VideoDimensions({this.width, this.height});
@JsonKey(name: 'width')
final int? width;
@JsonKey(name: 'height')
final int? height;
factory VideoDimensions.fromJson(Map<String, dynamic> json) =>
_$VideoDimensionsFromJson(json);
Map<String, dynamic> toJson() => _$VideoDimensionsToJson(this);
}
Properties
- width
- Video width in pixels.
- height
- Video height in pixels.