DepthTransition constructor

DepthTransition({
  1. Curve curve = Curves.easeOutSine,
  2. Color backgroundColor = Colors.black,
  3. double scale = 0.5,
})

Implementation

DepthTransition({
  this.curve = Curves.easeOutSine,
  this.backgroundColor = Colors.black,
  this.scale = 0.5,
});