ValidateInput.fromJson constructor

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

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