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