VideoInfo constructor

VideoInfo({
  1. String? url,
  2. String? userName,
  3. String? songName,
  4. bool? liked,
})

Implementation

VideoInfo({
  this.url,
  this.userName,
  this.songName,
  this.liked,
});