ignorePointer method

IgnorePointer ignorePointer({
  1. Key? key,
  2. bool ignoring = true,
})

用IgnorePointer包裹当前组件

Implementation

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