AnimatedSizedBox.fromSize constructor
AnimatedSizedBox.fromSize({})
Implementation
AnimatedSizedBox.fromSize({
Size? size,
Key? key,
Curve curve = Curves.linear,
VoidCallback? onEnd,
required Duration duration,
Widget? child,
}) : this(
width: size?.width,
height: size?.height,
key: key,
curve: curve,
onEnd: onEnd,
duration: duration,
child: child,
);