Firestore constructor
Firestore(
- String projectId, {
- String? databaseId,
- RequestAuthenticator? authenticator,
- Emulator? emulator,
Implementation
Firestore(
String projectId, {
String? databaseId,
RequestAuthenticator? authenticator,
Emulator? emulator,
}) : _gateway = FirestoreGateway(
projectId,
databaseId: databaseId,
authenticator: authenticator,
emulator: emulator,
),
assert(projectId.isNotEmpty);