clear method

void clear()

Delete all tokens.

トークンをすべて削除します。

Implementation

void clear() {
  if (_value == null) {
    return;
  }
  _value!.clear();
}