ExpandedTap constructor

const ExpandedTap({
  1. Key? key,
  2. void onTap()?,
  3. Widget? child,
})
return Expanded(
  child: GestureDetector(
    onTap: onTap,
    child: child,
  ),
);

Implementation

const ExpandedTap({Key? key, this.onTap, this.child}) : super(key: key);