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