toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final defaultValue = this.defaultValue;
final displayName = this.displayName;
final entityTypeDisplayName = this.entityTypeDisplayName;
final isList = this.isList;
final mandatory = this.mandatory;
final name = this.name;
final prompts = this.prompts;
final value = this.value;
return {
'defaultValue': ?defaultValue,
'displayName': ?displayName,
'entityTypeDisplayName': ?entityTypeDisplayName,
'isList': ?isList,
'mandatory': ?mandatory,
'name': ?name,
'prompts': ?prompts,
'value': ?value,
};
}