ProgressIndicatorAnimation<T> constructor
const
ProgressIndicatorAnimation<T> ({
- Key? key,
- required Future<
T> onPress(), - required dynamic onAsyncCallFinished(
- T
- required Widget buttonChild,
- required Color color,
- required double buttonWidth,
- required double buttonHeight,
- required Color progressIndicatorColor,
- required Color progressIndicatorBackground,
- required double progressIndicatorSize,
- BorderRadius? buttonRadius,
- BoxShadow? buttonShadow,
Implementation
const ProgressIndicatorAnimation({
Key? key,
required this.onPress,
required this.onAsyncCallFinished,
required this.buttonChild,
required this.color,
required this.buttonWidth,
required this.buttonHeight,
required this.progressIndicatorColor,
required this.progressIndicatorBackground,
required this.progressIndicatorSize,
this.buttonRadius,
this.buttonShadow,
}) : super(key: key);