clearOGAttachment method

void clearOGAttachment()

Removes the og attachment.

Implementation

void clearOGAttachment() {
  if (_ogAttachment != null) {
    removeAttachment(_ogAttachment!);
  }
  _ogAttachment = null;
}