VideoTextureOptions constructor

VideoTextureOptions({
  1. BuildContext? context,
  2. double? width,
  3. double? height,
  4. required String asset,
  5. bool loop = true,
})

Implementation

VideoTextureOptions({
  this.context,
  this.width,
  this.height,
  required this.asset,
  this.loop = true
});