toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (cancelledCount != null) 'cancelledCount': cancelledCount!,
      if (completionTime != null) 'completionTime': completionTime!,
      if (conditions != null) 'conditions': conditions!,
      if (failedCount != null) 'failedCount': failedCount!,
      if (logUri != null) 'logUri': logUri!,
      if (observedGeneration != null)
        'observedGeneration': observedGeneration!,
      if (retriedCount != null) 'retriedCount': retriedCount!,
      if (runningCount != null) 'runningCount': runningCount!,
      if (startTime != null) 'startTime': startTime!,
      if (succeededCount != null) 'succeededCount': succeededCount!,
    };