isCloseWrap property
bool
get
isCloseWrap
Check if the String is a close wrap char: >, }, ], ", '.
Example
bool isCloseWrap = ")".isCloseWrapChar(); // returns true;
Implementation
bool get isCloseWrap => closeWrappers.contains(this);