toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final displayName = this.displayName;
final method = this.method;
final name = this.name;
final occurrenceType = this.occurrenceType;
final valueType = this.valueType;
return {
'displayName': ?displayName,
'method': ?method,
'name': ?name,
'occurrenceType': ?occurrenceType,
'valueType': ?valueType,
};
}