Inkwell constructor

const Inkwell({
  1. Key? key,
  2. required Component child,
  3. VoidCallback? onTap,
  4. Unit? height,
  5. Unit? width,
})

Implementation

const Inkwell({
  super.key,
  required this.child,
  this.onTap,
  this.height,
  this.width,
});