getSelection method

Future<Selection> getSelection()

Implementation

Future<Selection> getSelection() async {
  final selectionResponse = await _dio.get(
    '${isTemp ? "temp" : ""}/$hostId/$projectName/selection.json',
  );

  final selection = Selection.fromJson(selectionResponse.data);
  return selection;
}