handleFormDataChange method

void handleFormDataChange(
  1. BuildContext context,
  2. dynamic newValue
)

Implementation

void handleFormDataChange(BuildContext context, dynamic newValue) {
  FormDataChangeNotification(
    newValue: newValue,
  ).dispatch(context);
}