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