FieldMetadata constructor
      
      FieldMetadata({})
     
    
    
Implementation
FieldMetadata(
    {List<dynamic>? allowedValues,
    this.autoCompleteUrl,
    this.configuration,
    this.defaultValue,
    bool? hasDefaultValue,
    required this.key,
    required this.name,
    required this.operations,
    required this.required,
    required this.schema})
    : allowedValues = allowedValues ?? [],
      hasDefaultValue = hasDefaultValue ?? false;