LLTappable.constrained constructor
const
LLTappable.constrained({
- required Widget child,
- FutureOr<
void> onTap(- BuildContext context
- Duration duration = const Duration(milliseconds: 500),
- Key? key,
Implementation
const LLTappable.constrained({
required this.child,
this.onTap,
this.duration = const Duration(milliseconds: 500),
super.key,
}) : _builder = LLTappable._constrainedBuilder;