IgnoreBaseline constructor

const IgnoreBaseline({
  1. Key? key,
  2. Widget? child,
  3. bool ignoring = true,
})

Creates a widget that does not report a baseline nor the baseline of its children.

Implementation

const IgnoreBaseline({
  super.key,
  super.child,
  this.ignoring = true,
});