VideoItemWidget constructor

const VideoItemWidget({
  1. Key? key,
  2. required UserModel userModel,
  3. double? width,
  4. double? height,
  5. bool isScreenStream = false,
})

Implementation

const VideoItemWidget({
  Key? key,
  required this.userModel,
  this.width,
  this.height,
  this.isScreenStream = false,
}) : super(key: key);