This commit is contained in:
@@ -83,6 +83,21 @@ class AnalysisRepositoryImpl implements AnalysisRepository {
|
||||
);
|
||||
}
|
||||
|
||||
@override
|
||||
Future<void> updateAnnotation({
|
||||
required String id,
|
||||
required String name,
|
||||
required String description,
|
||||
required String color,
|
||||
}) async {
|
||||
await _dao.updateAnnotation(
|
||||
id: id,
|
||||
name: name,
|
||||
description: description,
|
||||
color: color,
|
||||
);
|
||||
}
|
||||
|
||||
@override
|
||||
Future<void> deleteAnnotation(String id) async {
|
||||
await _dao.deleteAnnotation(id);
|
||||
|
||||
Reference in New Issue
Block a user