WeForm constructor

WeForm({
  1. dynamic key,
  2. bool boxBorder = true,
  3. double spacing = labelSpacing,
  4. double height = 50,
  5. required List<Widget> children,
})

Implementation

WeForm(
    {key,
    this.boxBorder = true,
    this.spacing = labelSpacing,
    this.height = 50,
    required this.children})
    : super(key: key);