NoOpTelemetryProvider class final

A no-op implementation of TelemetryProvider that can be used for development or testing purposes.

This provider implements all telemetry operations as no-ops, meaning they do nothing when called. This is useful for:

  • Development environments where telemetry is not needed
  • Testing where telemetry should be disabled
  • Prototyping before implementing a real telemetry provider

Example:

final plugins = PluginDescriptor(
  telemetry: TelemetryPlugin(providers: [NoOpTelemetryProvider()]),
);

WARNING: Do not use this provider in production. Replace it with a real telemetry provider that can properly track errors and performance.

Implemented types

Constructors

NoOpTelemetryProvider.new()

Properties

description String
The description of the provider.
no setteroverride
hashCode int
The hash code for this object.
no setterinherited
name String
The name of the provider.
no setteroverride
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
title String
The title of the provider.
no setteroverride

Methods

dispose() Future<void>
Disposes the provider.
override
init() Future<void>
Initializes the provider.
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
reportError(dynamic exception, {StackTrace? stackTrace, Map<String, dynamic>? params, bool fatal = false}) Future<void>
Reports an error with an optional stack trace and parameters.
override
reportFlutterError(FlutterErrorDetails details, {bool fatal = false}) Future<void>
Reports a Flutter error with optional parameters.
override
reportMessage(String message, {Map<String, dynamic>? params, LogLevel? level = LogLevel.info}) Future<void>
Reports a message with optional parameters.
override
startTrace(String name, String operation, {LogLevel? level = LogLevel.info}) Future<Trace>
Starts a trace with a specific name and operation.
override
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited