ClimateStatCard constructor

const ClimateStatCard({
  1. Key? key,
  2. required GaugeController controller,
  3. double min = 16,
  4. double max = 30,
  5. String label = 'CABIN TEMP',
  6. Color accentColor = const Color(0xFF38BDF8),
  7. double ringSize = 96,
  8. bool showGlow = true,
  9. DashboardCardStyle cardStyle = const DashboardCardStyle(),
  10. GaugeMode? mode,
})

Implementation

const ClimateStatCard({
  super.key,
  required this.controller,
  this.min = 16,
  this.max = 30,
  this.label = 'CABIN TEMP',
  this.accentColor = const Color(0xFF38BDF8),
  this.ringSize = 96,
  this.showGlow = true,
  this.cardStyle = const DashboardCardStyle(),
  this.mode,
});