FirestoreWrapper<C, D> constructor

FirestoreWrapper<C, D>(
  1. FirebaseApp _firebaseApp,
  2. FirestoreStateManager rootState
)

Implementation

FirestoreWrapper(
  this._firebaseApp,
  this.rootState,
) {
  this.app = FirebaseFirestore.instanceFor(app: _firebaseApp);
  this.auth = FirebaseAuth.instanceFor(app: _firebaseApp);
  this.rootState.initializationDone();
}