body property

Implementation

List<BarcodeArInfoAnnotationBodyComponent> get body => _body;

Implementation

set body(List<BarcodeArInfoAnnotationBodyComponent> newValue) {
  _body = List.unmodifiable(newValue);
  for (var component in _body) {
    component.addListener(_onBodyChange);
  }
  controller?.updateAnnotation(this);
}