JarFieldConfig<T> constructor

const JarFieldConfig<T>({
  1. required JarSchema<T, JarSchema<T, dynamic>> schema,
  2. T? defaultValue,
  3. bool disabled = false,
  4. List<AsyncValidator> asyncValidators = const [],
})

Implementation

const JarFieldConfig({
  required this.schema,
  this.defaultValue,
  this.disabled = false,
  this.asyncValidators = const [],
});