toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final datasetReference = this.datasetReference;
final externalDatasetReference = this.externalDatasetReference;
final friendlyName = this.friendlyName;
final id = this.id;
final kind = this.kind;
final labels = this.labels;
final location = this.location;
return {
'datasetReference': ?datasetReference,
'externalDatasetReference': ?externalDatasetReference,
'friendlyName': ?friendlyName,
'id': ?id,
'kind': ?kind,
'labels': ?labels,
'location': ?location,
};
}