toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final consumerGroup = this.consumerGroup;
final displayName = this.displayName;
final hostFormat = this.hostFormat;
final isRegional = this.isRegional;
final protocol = this.protocol;
final sessionMode = this.sessionMode;
final syntaxFormat = this.syntaxFormat;
final tlsAuthentication = this.tlsAuthentication;
final value = this.value;
return {
'consumerGroup': ?consumerGroup,
'displayName': ?displayName,
'hostFormat': ?hostFormat,
'isRegional': ?isRegional,
'protocol': ?protocol,
'sessionMode': ?sessionMode,
'syntaxFormat': ?syntaxFormat,
'tlsAuthentication': ?tlsAuthentication,
'value': ?value,
};
}