myappcrew_flutter 0.1.0
myappcrew_flutter: ^0.1.0 copied to clipboard
Lightweight MyAppCrew client for Flutter…
myappcrew_flutter #
Lightweight MyAppCrew client for Flutter. Sends first_open, periodic heartbeat, and error_shown with HMAC; supports deep-link tester linking.
Quick start #
import 'package:myappcrew_flutter/myappcrew_flutter.dart';
await MyAppCrew.I.init(const MyAppCrewOptions(
baseUrl: "https://<your-domain>/api/v1",
publicKey: "pk_...",
hmacSecret: "skh_...",
heartbeatEvery: Duration(minutes: 1),
));
await MyAppCrew.I.trackError(code: "LOGIN_FAILED");