activeStamp property

PdfCustomStamp? get activeStamp

The custom stamp the stamp tool places on tap. Null means the classic flow: drag out a box and type the caption. Not persisted - each session starts in the classic flow.

Implementation

PdfCustomStamp? get activeStamp => _activeStamp;
set activeStamp (PdfCustomStamp? value)

Implementation

set activeStamp(PdfCustomStamp? value) {
  if (value == _activeStamp) return;
  _activeStamp = value;
  notifyListeners();
}