openSourceLocation abstract method

void openSourceLocation({
  1. required String file,
  2. required int line,
  3. int col = 0,
})

Open a specific source location in the editor.

Used after the user picks a frame from the popup selection.

Implementation

void openSourceLocation({
  required String file,
  required int line,
  int col = 0,
});