toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final annotations = this.annotations;
  final config = this.config;
  final createTime = this.createTime;
  final deleteTime = this.deleteTime;
  final displayName = this.displayName;
  final etag = this.etag;
  final name = this.name;
  final nodePoolAutoscaling = this.nodePoolAutoscaling;
  final onPremVersion = this.onPremVersion;
  final reconciling = this.reconciling;
  final state = this.state;
  final status = this.status;
  final uid = this.uid;
  final updateTime = this.updateTime;
  return {
    'annotations': ?annotations,
    'config': ?config,
    'createTime': ?createTime,
    'deleteTime': ?deleteTime,
    'displayName': ?displayName,
    'etag': ?etag,
    'name': ?name,
    'nodePoolAutoscaling': ?nodePoolAutoscaling,
    'onPremVersion': ?onPremVersion,
    'reconciling': ?reconciling,
    'state': ?state,
    'status': ?status,
    'uid': ?uid,
    'updateTime': ?updateTime,
  };
}