StorageConfigurationData constructor Null safety

StorageConfigurationData(
  1. {required String type,
  2. String? localPath,
  3. String? storageUri,
  4. User? user,
  5. Map<String, dynamic>? extension}
)

Implementation

StorageConfigurationData({
  required this.type,
  this.localPath,
  this.storageUri,
  this.user,
  this.extension,
});