AntdFormItemContext<T> constructor

const AntdFormItemContext<T>({
  1. required BuildContext context,
  2. AntdFormController? controller,
  3. Map<String, dynamic>? formValue,
  4. T? value,
  5. required ValueChanged onChange,
})

Implementation

const AntdFormItemContext(
    {required this.context,
    this.controller,
    this.formValue,
    this.value,
    required this.onChange});