PinStack constructor

const PinStack({
  1. required List<Widget> children,
  2. Key? key,
  3. Decoration? decoration,
  4. Color? color,
})

Implementation

const PinStack(
    {required this.children, Key? key, this.decoration, this.color})
    : super(key: key);