isVariableWidth function
Returns true if str contains both full-width and half-width characters.
Implementation
@experimental
bool isVariableWidth(String str) => isFullWidth(str) && isHalfWidth(str);
Returns true if str contains both full-width and half-width characters.
@experimental
bool isVariableWidth(String str) => isFullWidth(str) && isHalfWidth(str);