onLongPress method
Implementation
Widget onLongPress(VoidCallback callback) {
return Material(
type: MaterialType.transparency,
child: InkWell(
onLongPress: callback,
splashColor: Colors.transparent,
highlightColor: Colors.transparent,
child: this,
),
);
}