cursor property
      
      int
      get
      cursor
      
    
    
Position in the text of the cursor.
Implementation
int get cursor => _wrapped.cursor;
      
      set
      cursor
      (int v) 
      
    
    
    
Implementation
set cursor(int v) {
  _wrapped.cursor = v;
}