creator property

String creator

Gets the creator.

Implementation

String get creator {
  _creator = '';
  if (_helper._dictionary!.containsKey(PdfDictionaryProperties.creator) &&
      _helper._dictionary![PdfDictionaryProperties.creator] is PdfString) {
    _creator =
        (_helper._dictionary![PdfDictionaryProperties.creator]! as PdfString)
            .value;
  }
  return _creator!;
}
void creator=(String value)

Sets the creator.

Implementation

set creator(String value) {
  if (_creator != value) {
    _creator = value;
    _helper._dictionary!.setString(PdfDictionaryProperties.creator, _creator);
  }
}