toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final dataDistribution = this.dataDistribution;
final diskUsed = this.diskUsed;
final memoryUsed = this.memoryUsed;
final name = this.name;
final numCachedPartitions = this.numCachedPartitions;
final numPartitions = this.numPartitions;
final partitions = this.partitions;
final rddStorageId = this.rddStorageId;
final storageLevel = this.storageLevel;
return {
'dataDistribution': ?dataDistribution,
'diskUsed': ?diskUsed,
'memoryUsed': ?memoryUsed,
'name': ?name,
'numCachedPartitions': ?numCachedPartitions,
'numPartitions': ?numPartitions,
'partitions': ?partitions,
'rddStorageId': ?rddStorageId,
'storageLevel': ?storageLevel,
};
}