Skip to content

Commit

Permalink
fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
alextekartik committed Oct 24, 2024
1 parent 55c027f commit 8bfe459
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions auth_sembast/lib/src/auth_sembast_impl.dart
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ class DbCurrentUser extends DbStringRecordBase {
CvFields get fields => [uid];
}

var _currentUserStore = cvStringRecordFactory.store<DbCurrentUser>('info');
var _currentUserStore = cvStringStoreFactory.store<DbCurrentUser>('info');
var _currentUserRecord = _currentUserStore.record('currentUser');
var _userStore = cvStringRecordFactory.store<DbUser>('user');
var _userStore = cvStringStoreFactory.store<DbUser>('user');

/// Firebase auth Sembast implementation
class FirebaseAuthSembastImpl
Expand Down

0 comments on commit 8bfe459

Please sign in to comment.