DimensionCellStyle constructor

DimensionCellStyle({
  1. double tipSpace = 0,
  2. EdgeInsets padding = EdgeInsets.zero,
  3. Color borderColor = defaultColor,
  4. double borderWidth = 1,
  5. Color backgroundColor = defaultColor,
  6. Offset offset = Offset.zero,
  7. double? borderRadius,
})

Implementation

DimensionCellStyle({
  this.tipSpace = 0,
  this.padding = EdgeInsets.zero,
  this.borderColor = defaultColor,
  this.borderWidth = 1,
  this.backgroundColor = defaultColor,
  this.offset = Offset.zero,
  this.borderRadius,
});