toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final executionReason = this.executionReason;
  final lastTransitionTime = this.lastTransitionTime;
  final message = this.message;
  final reason = this.reason;
  final revisionReason = this.revisionReason;
  final severity = this.severity;
  final state = this.state;
  final type = this.type;
  return {
    'executionReason': ?executionReason,
    'lastTransitionTime': ?lastTransitionTime,
    'message': ?message,
    'reason': ?reason,
    'revisionReason': ?revisionReason,
    'severity': ?severity,
    'state': ?state,
    'type': ?type,
  };
}