NiceStatTrend constructor

const NiceStatTrend({
  1. Key? key,
  2. required double percentage,
  3. bool? isPositive,
  4. String? label,
})

Implementation

const NiceStatTrend({
  super.key,
  required this.percentage,
  bool? isPositive,
  this.label,
}) : isPositive = isPositive ?? percentage >= 0;