Skip to content
This repository has been archived by the owner on Feb 20, 2024. It is now read-only.

Latest commit

 

History

History
28 lines (23 loc) · 602 Bytes

README.md

File metadata and controls

28 lines (23 loc) · 602 Bytes

Features

TODO: Essa lib server para coletar os erros do app em produção

Getting started

Adicione o package como depenencia no pubspec

manga_easy_crashlytics_service:
   git: 
    url: https://github.com/manga-easy/manga_easy_crashlytics_service.git
    ref: v1.0.0

Usage

void main(List<String> args) {
  final CrashlyticsService crashlyticsService = CrashlyticsGoogleService();
  try {
    throw Exception('Error qualquer');
  } catch (e, s) {
    if (e is Exception) {
      crashlyticsService.recordError(e: e, tag: 'Exemple', stack: s);
    }
  }
}