ProjectFeatureState.fromJson constructor

ProjectFeatureState.fromJson(
  1. Map<String, Object?> json
)

Implementation

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