RotatedIconAnimation<T> constructor
const
RotatedIconAnimation<T> ({
- Key? key,
- required Duration duration,
- required Future<
T> onPress(), - required dynamic onAsyncCallFinished(
- T
- required Text buttonText,
- required Widget icon,
- required Color color,
- required double buttonHeight,
- required BorderRadius? buttonRadius,
- required BoxShadow? buttonShadow,
- required double buttonWidth,
Implementation
const RotatedIconAnimation({
Key? key,
required this.duration,
required this.onPress,
required this.onAsyncCallFinished,
required this.buttonText,
required this.icon,
required this.color,
required this.buttonHeight,
required this.buttonRadius,
required this.buttonShadow,
required this.buttonWidth,
}) : super(key: key);