LogTextCard constructor

const LogTextCard({
  1. Key? key,
  2. required String logText,
  3. String? title,
  4. VoidCallback? onCopy,
})

Implementation

const LogTextCard({
  super.key,
  required this.logText,
  this.title,
  this.onCopy,
});