toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final condition = this.condition;
final hiddenValues = this.hiddenValues;
final visibleBackgroundColor = this.visibleBackgroundColor;
final visibleBackgroundColorStyle = this.visibleBackgroundColorStyle;
final visibleForegroundColor = this.visibleForegroundColor;
final visibleForegroundColorStyle = this.visibleForegroundColorStyle;
return {
'condition': ?condition,
'hiddenValues': ?hiddenValues,
'visibleBackgroundColor': ?visibleBackgroundColor,
'visibleBackgroundColorStyle': ?visibleBackgroundColorStyle,
'visibleForegroundColor': ?visibleForegroundColor,
'visibleForegroundColorStyle': ?visibleForegroundColorStyle,
};
}