SplashTap constructor

const SplashTap({
  1. Key? key,
  2. required void onTap()?,
  3. required Widget child,
  4. Color? color,
  5. BoxShape shape = BoxShape.rectangle,
})

Implementation

const SplashTap({
  Key? key,
  required this.onTap,
  required this.child,
  this.color,
  this.shape = BoxShape.rectangle,
}) : super(key: key);