dashi 1.0.0
dashi: ^1.0.0 copied to clipboard
Pure Dart client for Umami Analytics — pageviews, custom events, identify, and a pluggable offline queue. Web included.
import 'package:dashi/dashi.dart';
/// Minimal usage sketch — the full quickstart lands with the client
/// implementation (see the repository README).
void main() {
const context = UmamiContext(
language: 'en-US',
screen: '1920x1080',
userAgent: 'Dashi/0.1 (example; Linux)',
);
// ignore: avoid_print
print('dashi example placeholder — context language: ${context.language}');
}