TextControl constructor

const TextControl({
  1. Key? key,
  2. required String label,
  3. required String? description,
  4. required List<String> path,
  5. required Map<String, dynamic> jsonData,
  6. required JsonFormsCallback callback,
  7. int? minLength,
  8. bool? multi,
})

Implementation

const TextControl({
  super.key,
  required this.label,
  required this.description,
  required this.path,
  required this.jsonData,
  required this.callback,
  this.minLength, this.multi,
});