IgnoreBaseline constructor

const IgnoreBaseline({
  1. Key? key,
  2. Widget? child,
})

Creates a widget that ignores the child for baseline alignment purposes.

Implementation

const IgnoreBaseline({
  super.key,
  super.child,
});