InBaseCrashlitycs is a package meant to track any errors and crash of your flutter apps.

Features

  • Work in progress You can "try catch" errors and send them to your inbase.webinify.com account
  • Coming soon You can also send logs when the app crash by sending a crashReport

Getting started

To use this package, dont forget to also load our inbase package

Usage

Future<void> asyncFunction() async {
    try {
        "your code here";
    } catch(e) {
        await InBaseCrashlitycs.report(CrashReportModel(message: e.toString()));
    }
}

Additional information

This package require inbase to be installed in order to initiate the authentication to inbase.webinify.com

Note that this package is still under development, at this state it is not usable.