toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final activityType = this.activityType;
  final cluster = this.cluster;
  final code = this.code;
  final createTime = this.createTime;
  final description = this.description;
  final metadata = this.metadata;
  final name = this.name;
  final privateCloud = this.privateCloud;
  final state = this.state;
  final targetResourceType = this.targetResourceType;
  final updateTime = this.updateTime;
  return {
    'activityType': ?activityType,
    'cluster': ?cluster,
    'code': ?code,
    'createTime': ?createTime,
    'description': ?description,
    'metadata': ?metadata,
    'name': ?name,
    'privateCloud': ?privateCloud,
    'state': ?state,
    'targetResourceType': ?targetResourceType,
    'updateTime': ?updateTime,
  };
}