autoInsertSpace property

String get autoInsertSpace

对 2 个连续的中文字符之间插入空格

Implementation

String get autoInsertSpace {
  if (isTwoChineseCharacters) {
    return insertSpaceBetweenChars;
  }
  return this;
}