LspToolInput.fromJson constructor
Implementation
factory LspToolInput.fromJson(Map<String, dynamic> json) => LspToolInput(
action: json['action'] as String,
filePath: json['file_path'] as String,
line: json['line'] as int?,
column: json['column'] as int?,
);