FileValidationMessage.fromJson constructor

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

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?,
  );
}