TripStatCard constructor

const TripStatCard({
  1. Key? key,
  2. required GaugeController controller,
  3. double targetKm = 50,
  4. String label = 'TRIP',
  5. Color accentColor = const Color(0xFFA3E635),
  6. bool showGlow = true,
  7. DashboardCardStyle cardStyle = const DashboardCardStyle(),
  8. GaugeMode? mode,
})

Implementation

const TripStatCard({
  super.key,
  required this.controller,
  this.targetKm = 50,
  this.label = 'TRIP',
  this.accentColor = const Color(0xFFA3E635),
  this.showGlow = true,
  this.cardStyle = const DashboardCardStyle(),
  this.mode,
});