toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final autocompleteSuggestions = this.autocompleteSuggestions;
final defaultPort = this.defaultPort;
final description = this.description;
final displayName = this.displayName;
final isAdvanced = this.isAdvanced;
final key = this.key;
final max = this.max;
final min = this.min;
final portFieldType = this.portFieldType;
final regexPattern = this.regexPattern;
return {
'autocompleteSuggestions': ?autocompleteSuggestions,
'defaultPort': ?defaultPort,
'description': ?description,
'displayName': ?displayName,
'isAdvanced': ?isAdvanced,
'key': ?key,
'max': ?max,
'min': ?min,
'portFieldType': ?portFieldType,
'regexPattern': ?regexPattern,
};
}