FormBuilder constructor

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

Implementation

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