ScaleAnimation constructor
const
ScaleAnimation({})
Implementation
const ScaleAnimation({
Key? key,
this.duration = const Duration(milliseconds: 800),
required this.child,
this.curve = Curves.fastOutSlowIn,
this.initScale = 0.0,
this.finalScale = 1.0,
}) : super(key: key);