BloomFlexLayout constructor

const BloomFlexLayout({
  1. Key? key,
  2. required BloomComputedStyle style,
  3. List<Widget> children = const <Widget>[],
})

Creates a BloomFlexLayout widget with the specified computed style and children.

Implementation

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