TelemetryException constructor

const TelemetryException({
  1. required String message,
  2. String code = 'UNKNOWN',
  3. DateTime? timestamp,
  4. dynamic stackTrace,
})

Implementation

const TelemetryException({
  required this.message,
  this.code = 'UNKNOWN',
  this.timestamp,
  this.stackTrace,
});