Content property

Uint8List? Content
Gets the content of the attachment into memory. Content is set only when Load() is called.

Implementation

Uint8List? get Content => this._content;
void Content=(Uint8List? value)

Implementation

set Content(Uint8List? value) {
  this.ThrowIfThisIsNotNew();

  this._content = value;
  this._fileName = null;
  this._contentStream = null;
}