fromJson static method
Implementation
static ValidationResult fromJson(Map<String, dynamic> map) {
return ValidationResult(
message: map['message'],
property: map['property'],
dataPath: map['dataPath'],
schemaPath: map['schemaPath'],
keyword: map['keyword'],
params: map['params'] ?? {},
);
}