JsonFormArray constructor

const JsonFormArray({
  1. Key? key,
  2. required String form,
  3. required ValueChanged onChanged,
  4. double? padding,
  5. Map? formMap,
  6. Map errorMessages = const {},
  7. Map validations = const {},
  8. Map decorations = const {},
  9. Widget? buttonSave,
  10. Function? actionSave,
  11. TextEditingController? controller,
})

Implementation

const JsonFormArray({
  Key? key,
  required this.form,
  required this.onChanged,
  this.padding,
  this.formMap,
  this.errorMessages = const {},
  this.validations = const {},
  this.decorations = const {},
  this.buttonSave,
  this.actionSave,
  this.controller,
}) : super(key: key);