FormValue constructor

FormValue({
  1. required String id,
  2. required String formKey,
  3. required String label,
  4. required dynamic value,
})

Creates a new instance of FormValue.

Implementation

FormValue({
  required this.id,
  required this.formKey,
  required this.label,
  required this.value,
});