ScaleWidget constructor

const ScaleWidget({
  1. Key? key,
  2. required Widget child,
  3. int duration = 500,
  4. double begin = 0.5,
  5. double end = 1.0,
  6. int stopDuration = 0,
})

Implementation

const ScaleWidget(
    {Key? key,
    required this.child,
    this.duration = 500,
    this.begin = 0.5,
    this.end = 1.0,
    this.stopDuration = 0})
    : super(key: key);