ignorePointer method

Niku ignorePointer([
  1. bool ignoring = true
])

Apply IgnorePointer to widget

Equivalent to:

IgnorePointer(
  ignoring: input
)

Implementation

Niku ignorePointer([bool ignoring = true]) {
  _widget = IgnorePointer(
    ignoring: ignoring,
    child: _widget,
  );

  return this;
}