Content constructor

const Content(
  1. List<Widget> children, {
  2. Key? key,
  3. Alignment alignment = Alignment.topCenter,
})

Implementation

const Content(
    this.children, {
    super.key,
    this.alignment = Alignment.topCenter,
});