TalkerDataCard constructor

const TalkerDataCard({
  1. Key? key,
  2. required TalkerData data,
  3. VoidCallback? onCopyTap,
  4. VoidCallback? onTap,
  5. bool expanded = true,
  6. EdgeInsets? margin,
  7. required Color color,
  8. Color backgroundColor = defaultCardBackgroundColor,
})

Implementation

const TalkerDataCard({
  Key? key,
  required this.data,
  this.onCopyTap,
  this.onTap,
  this.expanded = true,
  this.margin,
  required this.color,
  this.backgroundColor = defaultCardBackgroundColor,
}) : super(key: key);