Layout constructor

const Layout({
  1. Key? key,
  2. required Widget child,
  3. LayoutFormat? format,
})

Implementation

const Layout({
  Key? key,
  required this.child,
  this.format,
}) : super(key: key);