LayoutStack constructor

LayoutStack({
  1. String? id,
  2. int size = 1,
  3. bool isFlex = true,
  4. required List<LayoutWidget> children,
})

Implementation

LayoutStack(
    {String? id, int size = 1, bool isFlex = true, required this.children})
    : super(id: id, size: size, isFlex: isFlex, children: children);