DragToCartAnimationOptions constructor

const DragToCartAnimationOptions({
  1. Duration duration = const Duration(milliseconds: 1000),
  2. Curve curve = Curves.easeIn,
  3. bool rotation = false,
})

Implementation

const DragToCartAnimationOptions({
  this.duration = const Duration(milliseconds: 1000),
  this.curve = Curves.easeIn,
  this.rotation = false,
});