AwesomeBouncingWidget constructor

const AwesomeBouncingWidget({
  1. Key? key,
  2. required Widget child,
  3. VoidCallback? onTap,
  4. double disabledOpacity = 0.3,
  5. bool? vibrationEnabled = true,
  6. Duration duration = const Duration(milliseconds: 100),
})

Implementation

const AwesomeBouncingWidget({
  Key? key,
  required this.child,
  this.onTap,
  this.disabledOpacity = 0.3,
  this.vibrationEnabled = true,
  this.duration = const Duration(milliseconds: 100),
}) : super(key: key);