TalkerDataCard constructor
const
TalkerDataCard({
- Key? key,
- required TalkerData data,
- VoidCallback? onCopyTap,
- VoidCallback? onTap,
- bool expanded = true,
- EdgeInsets? margin,
- required Color color,
- 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);