ActionConfigurationProperty.fromJson constructor 
    
      
      ActionConfigurationProperty.fromJson(
 - Map<String, dynamic> json
) 
    
    
  Implementation
  factory ActionConfigurationProperty.fromJson(Map<String, dynamic> json) {
  return ActionConfigurationProperty(
    key: json['key'] as bool,
    name: json['name'] as String,
    required: json['required'] as bool,
    secret: json['secret'] as bool,
    description: json['description'] as String?,
    queryable: json['queryable'] as bool?,
    type: (json['type'] as String?)?.toActionConfigurationPropertyType(),
  );
}