LogTextViewer constructor

const LogTextViewer({
  1. Key? key,
  2. required String logText,
  3. TextStyle? style,
  4. Color? urlColor,
  5. bool enableCopy = true,
})

Implementation

const LogTextViewer({
  super.key,
  required this.logText,
  this.style,
  this.urlColor,
  this.enableCopy = true,
});