CowDataValue constructor Null safety

CowDataValue(
  1. {required double value,
  2. bool? isHighlighted,
  3. CowDataBandValue? total}
)

Implementation

CowDataValue({
  required this.value,
  this.isHighlighted,
  this.total,
});