AppOptions constructor

AppOptions({
  1. required Credential credential,
  2. String? databaseUrl,
  3. String? projectId,
  4. String? storageBucket,
  5. String? serviceAccountId,
})

Implementation

AppOptions({
  required this.credential,
  this.databaseUrl,
  this.projectId,
  this.storageBucket,
  this.serviceAccountId,
});