AppOptions constructor

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

Implementation

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