onTapWithInk method
- @Deprecated("This Extension is no longer available; please use a Widget to describe it. このExtensionは使えなくなります。Widgetで記述してください。")
- VoidCallback callback
callback
when a tap is performed.
タップを行った際にcallback
を実行します。
Implementation
@Deprecated(
"This Extension is no longer available; please use a Widget to describe it. このExtensionは使えなくなります。Widgetで記述してください。",
)
InkWell onTapWithInk(VoidCallback callback) => InkWell(
onTap: callback,
child: this,
);