singleLine property
      
      TextModifier
      get
      singleLine
      
    
    
    
Implementation
TextModifier get singleLine => WrappedText(
      softWrap: (context, theme) => false,
      maxLines: (context, theme) => 1,
      child: this,
    );