ignorePointer method

Widget ignorePointer({
  1. bool ignoring = true,
})

Implementation

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