AntdFormItemProvider constructor

const AntdFormItemProvider({
  1. Key? key,
  2. required Widget child,
  3. required bool disabled,
  4. required bool readOnly,
  5. required dynamic getValue(),
  6. required AntdFormItemSetValue setValue,
  7. required String namePath,
  8. required bool existsShouUpdate,
})

Implementation

const AntdFormItemProvider(
    {super.key,
    required super.child,
    required this.disabled,
    required this.readOnly,
    required this.getValue,
    required this.setValue,
    required this.namePath,
    required this.existsShouUpdate});