ChampionForm constructor

const ChampionForm({
  1. Key? key,
  2. required ChampionFormController controller,
  3. required List<FormFieldBase> fields,
  4. double? spacing,
  5. double? formWidth,
  6. double? formHeight,
  7. FormTheme? theme,
  8. Widget formWrapper(
    1. BuildContext context,
    2. List<Widget> form
    ) = simpleWrapper,
})

Implementation

const ChampionForm({
  super.key,
  required this.controller,
  required this.fields,
  this.spacing,
  this.formWidth,
  this.formHeight,
  this.theme,
  this.formWrapper = simpleWrapper,
});