toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final backgroundColorSuggested = this.backgroundColorSuggested;
final baselineOffsetSuggested = this.baselineOffsetSuggested;
final boldSuggested = this.boldSuggested;
final fontSizeSuggested = this.fontSizeSuggested;
final foregroundColorSuggested = this.foregroundColorSuggested;
final italicSuggested = this.italicSuggested;
final linkSuggested = this.linkSuggested;
final smallCapsSuggested = this.smallCapsSuggested;
final strikethroughSuggested = this.strikethroughSuggested;
final underlineSuggested = this.underlineSuggested;
final weightedFontFamilySuggested = this.weightedFontFamilySuggested;
return {
'backgroundColorSuggested': ?backgroundColorSuggested,
'baselineOffsetSuggested': ?baselineOffsetSuggested,
'boldSuggested': ?boldSuggested,
'fontSizeSuggested': ?fontSizeSuggested,
'foregroundColorSuggested': ?foregroundColorSuggested,
'italicSuggested': ?italicSuggested,
'linkSuggested': ?linkSuggested,
'smallCapsSuggested': ?smallCapsSuggested,
'strikethroughSuggested': ?strikethroughSuggested,
'underlineSuggested': ?underlineSuggested,
'weightedFontFamilySuggested': ?weightedFontFamilySuggested,
};
}