Stack constructor

const Stack({
  1. String? key,
  2. String? style,
  3. required List<Widget> children,
})

Implementation

const Stack({
  this.key,
  this.style,
  required this.children,
});