v1SetOrganizationFeatureIntent.fromJson constructor
Implementation
factory v1SetOrganizationFeatureIntent.fromJson(Map<String, dynamic> json) {
final _name = v1FeatureNameFromJson(json['name']);
final _value = json['value'] as String;
return v1SetOrganizationFeatureIntent(
name: _name,
value: _value,
);
}