Video360Controller constructor

Video360Controller({
  1. required int id,
  2. String? url,
  3. double? width,
  4. double? height,
  5. bool? isRepeat,
  6. Video360ControllerPlayInfo? onPlayInfo,
})

Implementation

Video360Controller({
  required this.id,
  this.url,
  this.width,
  this.height,
  this.isRepeat,
  this.onPlayInfo,
}) {
  init(url ?? '', width ?? 0.0, height ?? 0.0, isRepeat ?? false);
}