TimerCard constructor

TimerCard({
  1. Key? key,
  2. required String? label,
  3. String? time,
  4. String? svgAsset,
  5. String? imgAsset,
  6. bool? status,
  7. dynamic onChanged(
    1. bool
    )?,
  8. Color? activeColor,
  9. Color? disableColor,
  10. ValueNotifier<String?>? timer,
  11. Color? color,
  12. dynamic onTap()?,
  13. TextStyle? timerStyle,
  14. TextStyle? labelStyle,
  15. TextStyle? sliderlabelStyle,
  16. String package = "flexicomponents",
})

Implementation

TimerCard(
    {super.key,
    required this.label,
    this.time,
    this.svgAsset,
    this.imgAsset,
    this.status,
    this.onChanged,
    this.activeColor,
    this.disableColor,
    this.timer,
    this.color,
    this.onTap,
    this.timerStyle,
    this.labelStyle,
    this.sliderlabelStyle,
    this.package = "flexicomponents"});