ValidateInput.fromJson constructor
Implementation
factory ValidateInput.fromJson(Map<String, dynamic> json) => ValidateInput(
filePath: json['file_path'] as String?,
content: json['content'] as String?,
validatorType: json['validator_type'] as String,
);