EcoScoreStatCard constructor

const EcoScoreStatCard({
  1. Key? key,
  2. required GaugeController controller,
  3. String label = 'ECO SCORE',
  4. Color accentColor = const Color(0xFF4ADE80),
  5. double ringSize = 96,
  6. bool showGlow = true,
  7. DashboardCardStyle cardStyle = const DashboardCardStyle(),
  8. GaugeMode? mode,
})

Implementation

const EcoScoreStatCard({
  super.key,
  required this.controller,
  this.label = 'ECO SCORE',
  this.accentColor = const Color(0xFF4ADE80),
  this.ringSize = 96,
  this.showGlow = true,
  this.cardStyle = const DashboardCardStyle(),
  this.mode,
});