isOpenWrap property

bool get isOpenWrap

Check if String is a open wrap char: <, {, [, ", '.

Example

bool isOpenWrap = "(".isOpenWrapChar(); // returns true;

Implementation

bool get isOpenWrap => openWrappers.contains(this);