memo property

String memo

Implementation

String get memo {
  for (final a in this) {
    if (a.typeUrl == memoTypeUrl) {
      return Attachment.fromBuffer(a.value).objectId;
    }
  }
  return '';
}