DimensionCellModel constructor

DimensionCellModel({
  1. double value = 0,
  2. PointType pointType = PointType.Rectangle,
  3. Size pointSize = Size.zero,
  4. Radius pointRadius = Radius.zero,
  5. List<Color>? pointShaderColors,
  6. Image? placehoderImage,
  7. Size placeImageSize = Size.zero,
})

Implementation

DimensionCellModel({
  this.value = 0,
  this.pointType = PointType.Rectangle,
  this.pointSize = Size.zero,
  this.pointRadius = Radius.zero,
  this.pointShaderColors,
  this.placehoderImage,
  this.placeImageSize = Size.zero,
});