LspToolInput.fromJson constructor

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

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