toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final cancellationTime = this.cancellationTime;
final completionTime = this.completionTime;
final creationTimestamp = this.creationTimestamp;
final currentWaveNumber = this.currentWaveNumber;
final description = this.description;
final etag = this.etag;
final id = this.id;
final kind = this.kind;
final name = this.name;
final pauseTime = this.pauseTime;
final resumeTime = this.resumeTime;
final rolloutEntity = this.rolloutEntity;
final rolloutPlan = this.rolloutPlan;
final selfLink = this.selfLink;
final selfLinkWithId = this.selfLinkWithId;
final state = this.state;
final waveDetails = this.waveDetails;
return {
'cancellationTime': ?cancellationTime,
'completionTime': ?completionTime,
'creationTimestamp': ?creationTimestamp,
'currentWaveNumber': ?currentWaveNumber,
'description': ?description,
'etag': ?etag,
'id': ?id,
'kind': ?kind,
'name': ?name,
'pauseTime': ?pauseTime,
'resumeTime': ?resumeTime,
'rolloutEntity': ?rolloutEntity,
'rolloutPlan': ?rolloutPlan,
'selfLink': ?selfLink,
'selfLinkWithId': ?selfLinkWithId,
'state': ?state,
'waveDetails': ?waveDetails,
};
}