factory ConfigRef.fromJson(Map<String, dynamic> json) { return ConfigRef( type: json['type'] as String, value: json['value'] as String, ); }