whitespaceNormal method

TextBuilder whitespaceNormal()

⚠️ 部分支持:Flutter 通过 maxLines 和 overflow 间接控制 whitespace-normal: white-space: normal; ✅ 支持:正常换行(默认行为)

Implementation

/// whitespace-normal: white-space: normal;
/// ✅ 支持:正常换行(默认行为)
TextBuilder whitespaceNormal() {
  _maxLines = null;
  return this;
}