LayoutsBuilder typedef

LayoutsBuilder = List<Widget> Function(Widget child(int i))

A callback used in ResponsiveLayout, it exposes a function called "child", that accepts as an input and integer and return the child of that index from ResponsiveLayout.children.

Implementation

typedef LayoutsBuilder = List<Widget> Function(Widget Function(int i) child);