toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final logView = this.logView;
  final openTelemetry = this.openTelemetry;
  final sessionScope = this.sessionScope;
  final traceScope = this.traceScope;
  final traceView = this.traceView;
  return {
    'logView': ?logView,
    'openTelemetry': ?openTelemetry,
    'sessionScope': ?sessionScope,
    'traceScope': ?traceScope,
    'traceView': ?traceView,
  };
}