footer property

Implementation

BarcodeArInfoAnnotationFooter? get footer => _footer;
set footer (BarcodeArInfoAnnotationFooter? newValue)

Implementation

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