toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final clusterLevelStopSyncingState = this.clusterLevelStopSyncingState;
final crCount = this.crCount;
final deploymentState = this.deploymentState;
final errors = this.errors;
final reposyncCrd = this.reposyncCrd;
final rootsyncCrd = this.rootsyncCrd;
final state = this.state;
final syncState = this.syncState;
final version = this.version;
return {
'clusterLevelStopSyncingState': ?clusterLevelStopSyncingState,
'crCount': ?crCount,
'deploymentState': ?deploymentState,
'errors': ?errors,
'reposyncCrd': ?reposyncCrd,
'rootsyncCrd': ?rootsyncCrd,
'state': ?state,
'syncState': ?syncState,
'version': ?version,
};
}