softHyphen constant
String
const softHyphen
Soft Hyphen character (U+00AD). Insert into strings to suggest word break points for automatic hyphenation by Flutter's text rendering engine. It's invisible unless a break occurs at its position.
e.g. 'hyph${SoftHyphen}Hyphenationena${SoftHyphen}Hyphenationtion'
Implementation
// cspell:disable-next-line
/// e.g. 'hyph${SoftHyphen}Hyphenationena${SoftHyphen}Hyphenationtion'
static const String softHyphen = '\u00ad';