FirebaseOptions constructor

FirebaseOptions({
  1. required String apiKey,
  2. required String applicationId,
  3. required String projectId,
  4. String? databaseUrl,
  5. String? gaTrackingId,
  6. String? gcmSenderId,
  7. String? storageBucket,
})

Implementation

FirebaseOptions({
  required this.apiKey,
  required this.applicationId,
  required this.projectId,
  this.databaseUrl,
  this.gaTrackingId,
  this.gcmSenderId,
  this.storageBucket,
});