PlexDashboardCard constructor

const PlexDashboardCard({
  1. Key? key,
  2. required String title,
  3. required String value,
  4. String? subtitle,
  5. double? trend,
  6. Widget? icon,
  7. Widget? chart,
  8. VoidCallback? onTap,
  9. Color? color,
})

Implementation

const PlexDashboardCard({
  super.key,
  required this.title,
  required this.value,
  this.subtitle,
  this.trend,
  this.icon,
  this.chart,
  this.onTap,
  this.color,
});