AttackVectorDescription.fromJson constructor

AttackVectorDescription.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory AttackVectorDescription.fromJson(Map<String, dynamic> json) {
  return AttackVectorDescription(
    vectorType: json['VectorType'] as String,
  );
}