toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final maxBlobSequenceLength = this.maxBlobSequenceLength;
final maxStep = this.maxStep;
final maxWallTime = this.maxWallTime;
return {
'maxBlobSequenceLength': ?maxBlobSequenceLength,
'maxStep': ?maxStep,
'maxWallTime': ?maxWallTime,
};
}