Ci360View constructor

Ci360View({
  1. required Ci360Options options,
  2. Ci360ImageModel? xImageModel,
  3. Ci360ImageModel? yImageModel,
  4. Widget? loadingIndicator,
  5. Ci360Controller? controller,
  6. Key? key,
})

Implementation

Ci360View({
  required this.options,
  this.xImageModel,
  this.yImageModel,
  this.loadingIndicator,
  Ci360Controller? controller,
  Key? key,
})  : _controller = controller ?? Ci360ControllerImpl(),
      assert(
        xImageModel != null || yImageModel != null,
        'No Provided Image Models For Any Axis [X|Y]',
      ),
      super(key: key);