RapidFlow constructor

const RapidFlow({
  1. Key? key,
  2. required String styles,
  3. required List<Widget> children,
})

Implementation

const RapidFlow({
  super.key,
  required this.styles,
  required this.children,
});