'Error: No named parameter with the name 'autovalidate'

How can fix this issue of the code

enter image description here

lib/Screens/LoginPage.dart:140:29: Error: No named parameter with the name 'autovalidate'.
                            autovalidate: _autoValidate,
                            ^^^^^^^^^^^^
/C:/src/flutter/packages/flutter/lib/src/widgets/form.dart:40:9: Context: Found this candidate, but the arguments don't match.
  const Form({
        ^^^^
lib/Screens/ForgetPasseord.dart:110:29: Error: No named parameter with the name 'autovalidate'.
                            autovalidate: _autovalidate,
                            ^^^^^^^^^^^^
/C:/src/flutter/packages/flutter/lib/src/widgets/form.dart:40:9: Context: Found this candidate, but the arguments don't match.
  const Form({

Error: No named parameter with the name 'autovalidate'.



Solution 1:[1]

autovalidate has been removed and replaced by autovalidateMode which takes a static value from AutovalidateMode class

ex.

Form(
  key: _formKey,
  autovalidateMode: AutovalidateMode.always,
  child: Card(

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 omar hatem