ProjectInfo constructor

ProjectInfo({
  1. required String projectId,
  2. required String serverAddress,
  3. required String licenseKey,
  4. required String googleMapKey,
  5. required String iOSContainerId,
  6. String storageFolderName = "",
  7. bool isTrialLicenceKey = true,
  8. bool enableMobileNumberLogin = true,
})

Implementation

ProjectInfo({
  required this.projectId,
  required this.serverAddress,
  required this.licenseKey,
  required this.googleMapKey,
  required this.iOSContainerId,
  this.storageFolderName = "",
  this.isTrialLicenceKey = true,
  this.enableMobileNumberLogin = true,
});