diff --git a/packages/flutter/lib/src/widgets/form.dart b/packages/flutter/lib/src/widgets/form.dart index e0ce2b8e7e..4c3b120387 100644 --- a/packages/flutter/lib/src/widgets/form.dart +++ b/packages/flutter/lib/src/widgets/form.dart @@ -72,7 +72,6 @@ class Form extends StatefulWidget { this.autovalidate = false, this.onWillPop, this.onChanged, - this.onSaved, }) : assert(child != null), super(key: key); @@ -119,13 +118,6 @@ class Form extends StatefulWidget { /// will rebuild. final VoidCallback onChanged; - /// Called when the form is saved (after all the form fields have been saved). - /// - /// See also: - /// - /// * [FormState.save] - final VoidCallback onSaved; - @override FormState createState() => FormState(); } @@ -180,8 +172,6 @@ class FormState extends State