toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final clusterConditions = this.clusterConditions;
final detail = this.detail;
final endTime = this.endTime;
final error = this.error;
final location = this.location;
final name = this.name;
final nodepoolConditions = this.nodepoolConditions;
final operationType = this.operationType;
final progress = this.progress;
final selfLink = this.selfLink;
final startTime = this.startTime;
final status = this.status;
final statusMessage = this.statusMessage;
final targetLink = this.targetLink;
final zone = this.zone;
return {
'clusterConditions': ?clusterConditions,
'detail': ?detail,
'endTime': ?endTime,
'error': ?error,
'location': ?location,
'name': ?name,
'nodepoolConditions': ?nodepoolConditions,
'operationType': ?operationType,
'progress': ?progress,
'selfLink': ?selfLink,
'startTime': ?startTime,
'status': ?status,
'statusMessage': ?statusMessage,
'targetLink': ?targetLink,
'zone': ?zone,
};
}