column property
      
      num
      get
      column
      
    
    
The column number of the current character position in an input stream.
Implementation
_i2.num get column => _i3.getProperty(
      this,
      'Column',
    );
      
      set
      column
      (num value) 
      
    
    
    
Implementation
set column(_i2.num value) {
  _i3.setProperty(
    this,
    'Column',
    value,
  );
}