toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final deploymentConfig = this.deploymentConfig;
  final deploymentId = this.deploymentId;
  final entryPoints = this.entryPoints;
  final updateTime = this.updateTime;
  return {
    'deploymentConfig': ?deploymentConfig,
    'deploymentId': ?deploymentId,
    'entryPoints': ?entryPoints,
    'updateTime': ?updateTime,
  };
}