FormDataChangeNotification constructor

FormDataChangeNotification({
  1. String? changeField,
  2. required dynamic newValue,
})

form data change notification

Implementation

FormDataChangeNotification({
  this.changeField,
  required this.newValue,
});