clear method

void clear({
  1. bool unfocus = true,
})

Resets the replied, attachments and field.

Implementation

void clear({bool unfocus = true}) {
  replied.clear();
  attachments.clear();
  forwarding.value = false;
  field.clear(unfocus: unfocus);
  field.unsubmit();
  onChanged?.call();
}