Skip to content

Commit

Permalink
[analyze] Fix compile errors
Browse files Browse the repository at this point in the history
  • Loading branch information
juzerali committed Oct 7, 2021
1 parent e333a27 commit 45f2186
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
// Generated file. Do not edit.
//

// ignore_for_file: directives_ordering
// ignore_for_file: lines_longer_than_80_chars

import 'package:firebase_auth_web/firebase_auth_web.dart';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,12 +166,12 @@ class AuthenticationRepository {
}) : _cache = cache ?? CacheClient(),
_firebaseAuth = firebaseAuth ?? firebase_auth.FirebaseAuth.instance,
_googleSignIn = googleSignIn ?? GoogleSignIn.standard(),
_crypto = cryptoApi ?? CryptoApi()
_crypto = cryptoApi ?? CryptoApi();

final CacheClient _cache;
final firebase_auth.FirebaseAuth _firebaseAuth;
final GoogleSignIn _googleSignIn;
final Crypto _crypto;
final CryptoApi _crypto;

/// Whether or not the current environment is web
/// Should only be overriden for testing purposes. Otherwise,
Expand Down

0 comments on commit 45f2186

Please sign in to comment.