DeskForm constructor

const DeskForm({
  1. Key? key,
  2. required List<DeskField> fields,
  3. Map<String, dynamic> data = const {},
  4. String? title,
  5. OnFieldChanged? onFieldChanged,
})

Implementation

const DeskForm({
  super.key,
  required this.fields,
  this.data = const {},
  this.title,
  this.onFieldChanged,
});