toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final deserialized = this.deserialized;
final diskSize = this.diskSize;
final executorId = this.executorId;
final hostPort = this.hostPort;
final memSize = this.memSize;
final name = this.name;
final storageLevel = this.storageLevel;
final useDisk = this.useDisk;
final useMemory = this.useMemory;
return {
'deserialized': ?deserialized,
'diskSize': ?diskSize,
'executorId': ?executorId,
'hostPort': ?hostPort,
'memSize': ?memSize,
'name': ?name,
'storageLevel': ?storageLevel,
'useDisk': ?useDisk,
'useMemory': ?useMemory,
};
}