View3D constructor

const View3D(
  1. double width,
  2. double height,
  3. double thickness, {
  4. Key? key,
  5. List<Widget?>? sides,
  6. bool center = true,
  7. Color backgroundColor = Colors.transparent,
  8. ResetTarget? resetTarget,
  9. Reset? reset = const ResetNormal(),
})

Implementation

const View3D(
  this.width,
  this.height,
  this.thickness, {
  Key? key,
  this.sides,
  this.center = true,
  this.backgroundColor = Colors.transparent,
  this.resetTarget,
  this.reset = const ResetNormal(),
}) : super(key: key);