ResponsiveLayout constructor

const ResponsiveLayout({
  1. Key? key,
  2. required Map<FormFactor, Widget> children,
  3. ResponsiveLayoutDelegate delegate = const DefaultResponsiveLayoutDelegate(),
})

Creates an instance of ResponsiveLayout widget.

Implementation

const ResponsiveLayout({
  Key? key,
  required this.children,
  this.delegate = const DefaultResponsiveLayoutDelegate(),
}) : super(key: key);