ProgressIndicatorAnimation<T> constructor

const ProgressIndicatorAnimation<T>({
  1. Key? key,
  2. required Future<T> onPress(),
  3. required dynamic onAsyncCallFinished(
    1. T
    ),
  4. required Widget buttonChild,
  5. required Color color,
  6. required double buttonWidth,
  7. required double buttonHeight,
  8. required Color progressIndicatorColor,
  9. required Color progressIndicatorBackground,
  10. required double progressIndicatorSize,
  11. BorderRadius? buttonRadius,
  12. 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);