App constructor

App({
  1. required String applicationId,
  2. required String projectId,
  3. String? functionsURL,
  4. String? databaseURL,
  5. String? appPassword,
})

Implementation

App({
  required this.applicationId,
  required this.projectId,
  this.functionsURL,
  this.databaseURL,
  this.appPassword,
});