ArcaneFormSection constructor

const ArcaneFormSection({
  1. String? title,
  2. String? description,
  3. required List<Widget> children,
  4. double spacing = 16,
  5. Key? key,
})

Implementation

const ArcaneFormSection({
  this.title,
  this.description,
  required this.children,
  this.spacing = 16,
  super.key,
});