clear method

void clear()

Implementation

void clear() {
  for (final upload in _attachmentUploads) {
    upload.removeListener(notifyListeners);
  }

  textFieldController.clear();
  _attachmentUploads.clear();

  notifyListeners();
}