dsn property
String?
get
dsn
The DSN tells the SDK where to send the events to. If an empty string is used, the SDK will not send any events.
Implementation
String? get dsn => _dsn;
set
dsn
(String? value)
Implementation
set dsn(String? value) {
if (_dsn != value) {
_dsn = value;
_parsedDsn = null; // Invalidate the cached parsed DSN
}
}