LLTappable.constrained constructor

const LLTappable.constrained({
  1. required Widget child,
  2. FutureOr<void> onTap()?,
  3. Duration duration = const Duration(milliseconds: 500),
  4. Key? key,
})

Implementation

const LLTappable.constrained({
  required this.child,
  this.onTap,
  this.duration = const Duration(milliseconds: 500),
  super.key,
}) : _builder = LLTappable._constrainedBuilder;