toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final containsLargeData = this.containsLargeData;
final dataType = this.dataType;
final defaultValue = this.defaultValue;
final description = this.description;
final displayName = this.displayName;
final inputOutputType = this.inputOutputType;
final isTransient = this.isTransient;
final jsonSchema = this.jsonSchema;
final key = this.key;
final masked = this.masked;
final producer = this.producer;
final searchable = this.searchable;
return {
'containsLargeData': ?containsLargeData,
'dataType': ?dataType,
'defaultValue': ?defaultValue,
'description': ?description,
'displayName': ?displayName,
'inputOutputType': ?inputOutputType,
'isTransient': ?isTransient,
'jsonSchema': ?jsonSchema,
'key': ?key,
'masked': ?masked,
'producer': ?producer,
'searchable': ?searchable,
};
}