removeAttachment method

void removeAttachment(
  1. Object key
)

Implementation

void removeAttachment(Object key) {
  final attachment = _attachments?.remove(key);
  _disposeAttachment(attachment);
}