clear method

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

Resets the attachments and field.

Implementation

void clear({bool unfocus = true}) {
  attachments.clear();
  field.clear(unfocus: unfocus);
  field.unsubmit();
}