toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final alternateText = this.alternateText;
final kind = this.kind;
final renderEncoding = this.renderEncoding;
final showCodeText = this.showCodeText;
final type = this.type;
final value = this.value;
return {
'alternateText': ?alternateText,
'kind': ?kind,
'renderEncoding': ?renderEncoding,
'showCodeText': ?showCodeText,
'type': ?type,
'value': ?value,
};
}