CarpenterFormField constructor

const CarpenterFormField({
  1. Key? key,
  2. required String label,
  3. required Widget child,
  4. bool required = false,
  5. String? error,
  6. String? description,
})

Implementation

const CarpenterFormField({
  super.key,
  required this.label,
  required this.child,
  this.required = false,
  this.error,
  this.description,
});