CarpenterSectionLayout constructor

const CarpenterSectionLayout({
  1. Key? key,
  2. required String title,
  3. required Widget child,
  4. Widget? navigation,
  5. Widget? header,
  6. Widget? actions,
})

Implementation

const CarpenterSectionLayout({
  super.key,
  required this.title,
  required this.child,
  this.navigation,
  this.header,
  this.actions,
});