Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
formatting
  • Loading branch information
timtraversy committed Aug 22, 2019
commit 24e24025e3b84de67478c8e366d8a29fa5442704
7 changes: 4 additions & 3 deletions packages/firebase_auth/lib/src/firebase_auth.dart
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,10 @@ class FirebaseAuth {
}) async {
assert(email != null);
return await channel.invokeListMethod<String>(
'fetchSignInMethodsForEmail',
<String, String>{'email': email, 'app': app.name},
) ?? <List<String>>[];
'fetchSignInMethodsForEmail',
<String, String>{'email': email, 'app': app.name},
) ??
<List<String>>[];
}

/// Triggers the Firebase Authentication backend to send a password-reset
Expand Down