With Flutter:
$ flutter pub add avo_inspector
This will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get):
dependencies:
avo_inspector: ^1.0.0
Now in your Dart code, you can use:
import 'package:avo_inspector/avo_inspector.dart';
Obtain the API key at Avo.app
import 'package:avo_inspector/avo_inspector.dart';
AvoInspector avoInspector = await AvoInspector.create(
apiKey: "my_key",
env: AvoInspectorEnv.dev,
appVersion: "1.0",
appName: "Hello Flutter");
Logs are enabled by default in the dev mode and disabled in prod mode.
AvoInspector.shouldLog = true;
This method gets actual tracking event parameters, extracts schema automatically and sends it to the Avo Inspector backend. Just call this method at the same place you call your analytics tools' track methods with the same parameters.
avoInspector.trackSchemaFromEvent(
eventName: "Event name",
eventProperties: {
"String Prop": "Prop Value",
"Float Prop": 1.0,
"Boolean Prop": true});
Read more in the Avo documentation
In order to ensure our SDK doesn't have a large impact on performance or battery life it supports event schemas batching.
Default batch size is 30 and default batch flush timeout is 30 seconds. In development mode batching is disabled.
AvoBatcher.batchSizeThreshold = 10;
AvoBatcher.batchFlushSecondsThreshold = 10;
Avo (https://www.avo.app), [email protected]
AvoInspector is available under the MIT license.