background property
      
      dynamic
      get
      background
      
    
    
Gets or sets the background color for a particular row or column, which fills the entire span of the row or column, including any separatorPadding.
The default value is null, which means nothing is drawn in the background of the row or column.
Implementation
_i2.dynamic get background => _i4.getProperty(
      this,
      'background',
    );
      
      set
      background
      (dynamic value) 
      
    
    
    
Implementation
set background(_i2.dynamic value) {
  _i4.setProperty(
    this,
    'background',
    value,
  );
}