LayoutInflatingWidget constructor

const LayoutInflatingWidget({
  1. Key? key,
  2. List<Widget> children = const [],
})

Base constructor for a widget that can inflate arbitrary widgets during layout.

Implementation

const LayoutInflatingWidget({
  super.key,
  this.children = const [],
});