15 lines
391 B
Dart
15 lines
391 B
Dart
import 'package:clarity_flutter/clarity_flutter.dart';
|
|
|
|
/// Microsoft Clarity configuration — separate mobile project so recordings
|
|
/// and heatmaps are isolated from web traffic.
|
|
class ClarityAnalytics {
|
|
ClarityAnalytics._();
|
|
|
|
static const _projectId = 'wgtcstm336';
|
|
|
|
static final ClarityConfig config = ClarityConfig(
|
|
projectId: _projectId,
|
|
logLevel: LogLevel.None,
|
|
);
|
|
}
|