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