Content property

Uint8List? Content
Gets or sets the content.

Implementation

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

Implementation

set Content(Uint8List? value) {
  if (this.CanSetFieldValue(this.content, value)) {
    this.content = value;
    this.Changed();
  }
}