Widget toTappableText( void Function() onTap, [ Size? detectionBorder, ]) { return WTapDetector( detectionBorder: detectionBorder ?? Size.square(16.sc), onTap: onTap, child: this, ); }