FormBuilder constructor

const FormBuilder({@required Widget child, bool readOnly: false, Key key, dynamic onChanged(Map<String, dynamic>), bool autovalidate: false, WillPopCallback onWillPop, Map<String, dynamic> initialValue: const {} })

Implementation

const FormBuilder( //this.context,
    {
  @required this.child,
  this.readOnly = false,
  this.key,
  this.onChanged,
  this.autovalidate = false,
  this.onWillPop,
  this.initialValue = const {},
}) : super(key: key);