toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final blockName = this.blockName;
  final diskUsed = this.diskUsed;
  final executors = this.executors;
  final memoryUsed = this.memoryUsed;
  final storageLevel = this.storageLevel;
  return {
    'blockName': ?blockName,
    'diskUsed': ?diskUsed,
    'executors': ?executors,
    'memoryUsed': ?memoryUsed,
    'storageLevel': ?storageLevel,
  };
}