producer property
String
get
producer
Gets the producer.
Implementation
String get producer {
_producer = '';
if (_helper._dictionary!.containsKey(PdfDictionaryProperties.producer) &&
_helper._dictionary![PdfDictionaryProperties.producer] is PdfString) {
_producer =
(_helper._dictionary![PdfDictionaryProperties.producer]! as PdfString)
.value;
}
return _producer!;
}
set
producer
(String value)
Sets the producer.
Implementation
set producer(String value) {
if (_producer != value) {
_producer = value;
_helper._dictionary!
.setString(PdfDictionaryProperties.producer, _producer);
}
}