ignore method

void ignore([
  1. bool value = true
])

Sets whether or not this child should be ignored by paint and BoxyChild.hitTest.

The child still needs to be laid out while ignored.

Implementation

void ignore([bool value = true]) {
  _ignore = value;
}