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