Firestore constructor

Firestore(
  1. String project, {
  2. String database = '(default)',
})

Implementation

Firestore(this.project, {this.database = '(default)'})
    : client = http.Client(),
      accessPath = path(project, database),
      accessUri = uri(project, database);