DependencyDetail.fromJson constructor
Implementation
factory DependencyDetail.fromJson(Map<String, dynamic> json) {
return DependencyDetail(
type: (json['type'] as String? ?? 'defaultType').toLowerCase(),
onFId: (json['onFId'] as String? ?? 'defaultOnQid').toLowerCase(),
value: (json['value'] as String? ?? 'defaultValue').toLowerCase(),
);
}