ColumnState constructor

ColumnState({
  1. double? width,
  2. bool? visible,
  3. bool? pinLeft,
  4. bool? pinRight,
  5. bool userResized = false,
})

Creates a new instance of ColumnState

Implementation

ColumnState({
  this.width,
  this.visible,
  this.pinLeft,
  this.pinRight,
  this.userResized = false,
});