LLTappable constructor
LLTappable({})
Implementation
factory LLTappable({
required Widget child,
Key? key,
FutureOr<void> Function()? onTap,
Duration duration = const Duration(milliseconds: 500),
}) =>
LLTappable.constrained(
key: key,
duration: duration,
onTap: onTap,
child: child,
);