toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final deployment = this.deployment;
  final httpRoute = this.httpRoute;
  final podSelectorLabel = this.podSelectorLabel;
  final routeDestinations = this.routeDestinations;
  final routeUpdateWaitTime = this.routeUpdateWaitTime;
  final service = this.service;
  final stableCutbackDuration = this.stableCutbackDuration;
  return {
    'deployment': ?deployment,
    'httpRoute': ?httpRoute,
    'podSelectorLabel': ?podSelectorLabel,
    'routeDestinations': ?routeDestinations,
    'routeUpdateWaitTime': ?routeUpdateWaitTime,
    'service': ?service,
    'stableCutbackDuration': ?stableCutbackDuration,
  };
}