FileValidationMessage.fromJson constructor
Implementation
factory FileValidationMessage.fromJson(Map<String, dynamic> json) {
return FileValidationMessage(
content: json['content'] as String?,
title: json['title'] as String?,
type: json['type'] as String?,
);
}