toJson method
Implementation
Map<String, dynamic> toJson() {
final defaultConfig = this.defaultConfig;
final functions = this.functions;
return {
if (defaultConfig != null) 'DefaultConfig': defaultConfig,
if (functions != null) 'Functions': functions,
};
}