StorageInitResult constructor

const StorageInitResult({
  1. required bool existed,
  2. required bool created,
  3. required String bucketName,
  4. String message = '',
  5. bool needsFirebaseInit = false,
  6. String? getStartedUrl,
})

Implementation

const StorageInitResult({
  required this.existed,
  required this.created,
  required this.bucketName,
  this.message = '',
  this.needsFirebaseInit = false,
  this.getStartedUrl,
});