UserVideo constructor

UserVideo({
  1. required String url,
  2. required String image,
  3. String? desc,
})

Implementation

UserVideo({
  required this.url,
  required this.image,
  this.desc,
});