toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final blobs = this.blobs;
final scalar = this.scalar;
final step = this.step;
final tensor = this.tensor;
final wallTime = this.wallTime;
return {
'blobs': ?blobs,
'scalar': ?scalar,
'step': ?step,
'tensor': ?tensor,
'wallTime': ?wallTime,
};
}