touchIgnored method

Widget touchIgnored({
  1. bool ignore = true,
})

Enables or disables touch interactions with feedback using IgnorePointer.

Implementation

Widget touchIgnored({bool ignore = true}) {
  return IgnorePointer(
    ignoring: ignore,
    child: this,
  );
}