replaceAnnotationStrokes method

void replaceAnnotationStrokes(
  1. String sharerIdentity,
  2. List<AnnotationStroke> strokes
)

Implementation

void replaceAnnotationStrokes(
    String sharerIdentity, List<AnnotationStroke> strokes) {
  _strokesBySharer[sharerIdentity] = List.from(strokes);
  notifyListeners();
}