ProjectFeatureState.fromJson constructor
Implementation
factory ProjectFeatureState.fromJson(Map<String, Object?> json) {
return ProjectFeatureState(
state: json[r'state'] != null
? ProjectFeatureStateState.fromValue(json[r'state']! as String)
: null,
);
}