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