View3D.autoReset constructor

const View3D.autoReset(
  1. double width,
  2. double height,
  3. double thickness, {
  4. Key? key,
  5. bool center = false,
  6. List<Widget?>? sides,
  7. Color backgroundColor = Colors.transparent,
})

Implementation

const View3D.autoReset(
  double width,
  double height,
  double thickness, {
  Key? key,
  bool center = false,
  List<Widget?>? sides,
  Color backgroundColor = Colors.transparent,
}) : this(width, height, thickness,
          key: key,
          center: center,
          sides: sides,
          backgroundColor: backgroundColor,
          reset: const ResetElasticOut(),
          resetTarget: const ResetTarget2());