RddStorageInfo constructor

RddStorageInfo({
  1. List<RddDataDistribution>? dataDistribution,
  2. String? diskUsed,
  3. String? memoryUsed,
  4. String? name,
  5. int? numCachedPartitions,
  6. int? numPartitions,
  7. List<RddPartitionInfo>? partitions,
  8. int? rddStorageId,
  9. String? storageLevel,
})

Implementation

RddStorageInfo({
  this.dataDistribution,
  this.diskUsed,
  this.memoryUsed,
  this.name,
  this.numCachedPartitions,
  this.numPartitions,
  this.partitions,
  this.rddStorageId,
  this.storageLevel,
});