NiceRailLayout constructor

const NiceRailLayout({
  1. Key? key,
  2. required Widget rail,
  3. required Widget content,
  4. double railWidth = 72,
  5. bool railOnLeft = true,
  6. Color? railBackground,
  7. double? gap,
})

Implementation

const NiceRailLayout({
  super.key,
  required this.rail,
  required this.content,
  this.railWidth = 72,
  this.railOnLeft = true,
  this.railBackground,
  this.gap,
});