ScaleAnimation constructor
const
ScaleAnimation({})
Implementation
const ScaleAnimation({
required this.child,
required this.onTap,
this.tooltip = '',
Key? key,
this.id = 1,
this.isDisabled = false,
this.duration = const Duration(milliseconds: 150),
this.scaleValue = 0.95,
}) : assert(scaleValue <= 1 && scaleValue >= 0,
'Range error: Range should be between [0,1]'),
super(key: key);