InkRevealWidget constructor

const InkRevealWidget({
  1. required Widget child,
  2. required Animation<double> animation,
  3. required Color color,
  4. bool flipHorizontally = false,
  5. Key? key,
})

Implementation

const InkRevealWidget({
  required this.child,
  required this.animation,
  required this.color,
  this.flipHorizontally = false,
  Key? key,
}) : super(key: key);