Skip to content

Instantly share code, notes, and snippets.

@iranjunior
Last active June 28, 2021 14:34
Show Gist options
  • Save iranjunior/74072ee9a797e474a5288f83c766603f to your computer and use it in GitHub Desktop.
Save iranjunior/74072ee9a797e474a5288f83c766603f to your computer and use it in GitHub Desktop.
Criando chaves para melhor identificar um incidente.
class _MyHomePageState extends State<MyHomePage> {
bool _isGuess = false;
@override
void initState() {
super.initState();
// Seta se o usuário no momento já está logado
FirebaseCrashlytics.instance.setCustomKey('guess', _isGuess);
// Seta o id do usuário para melhoria na investigação
FirebaseCrashlytics.instance.setUserIdentifier(widget.user['id']);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment