DraftModeUISection constructor

const DraftModeUISection({
  1. Key? key,
  2. required List<Widget> children,
  3. String? header,
  4. bool transparent = false,
  5. double? labelWidth,
})

Implementation

const DraftModeUISection({
  super.key,
  required this.children,
  this.header,
  this.transparent = false,
  this.labelWidth,
});