DeeResponsiveLayout constructor

const DeeResponsiveLayout({
  1. Key? key,
  2. required List<DeeResponsiveColumn> children,
})

Creates a DeeResponsiveLayout with the specified children.

children is a list of DeeResponsiveColumn to be displayed in the layout.

Implementation

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