WeFormScope constructor

WeFormScope({
  1. Key? key,
  2. WeFormState? state,
  3. dynamic formValue,
  4. required Widget child,
})

Implementation

WeFormScope({Key? key, this.state, this.formValue, required Widget child})
    : super(key: key, child: child);