footer property
BarcodeArInfoAnnotationFooter?
get
footer
Implementation
BarcodeArInfoAnnotationFooter? get footer => _footer;
set
footer
()
Implementation
set footer(BarcodeArInfoAnnotationFooter? newValue) {
_footer?.removeListener(_onHeaderFooterChange);
_footer = newValue;
_footer?.addListener(_onHeaderFooterChange);
controller?.updateAnnotation(this);
}