GoogleServicesConfig constructor

const GoogleServicesConfig({
  1. required String appId,
  2. required String apiKey,
  3. required String projectId,
  4. String? databaseUrl,
  5. String? storageBucket,
  6. String? messagingSenderId,
})

Implementation

const GoogleServicesConfig({
  required this.appId,
  required this.apiKey,
  required this.projectId,
  this.databaseUrl,
  this.storageBucket,
  this.messagingSenderId,
});