toJson method
Implementation
Map<String, Object?> toJson() {
var config = this.config;
var properties = this.properties;
var value = this.value;
final json = <String, Object?>{};
if (config != null) {
json[r'config'] = config.toJson();
}
if (properties != null) {
json[r'properties'] = properties;
}
json[r'value'] = value;
return json;
}