decodeSubject method

String? decodeSubject()

Decodes the subject of this message

Implementation

String? decodeSubject() {
  _decodedSubject ??= decodeHeaderValue('subject');
  return _decodedSubject;
}