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