toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final buttonList = this.buttonList;
final chipList = this.chipList;
final dateTimePicker = this.dateTimePicker;
final decoratedText = this.decoratedText;
final image = this.image;
final selectionInput = this.selectionInput;
final textInput = this.textInput;
final textParagraph = this.textParagraph;
return {
'buttonList': ?buttonList,
'chipList': ?chipList,
'dateTimePicker': ?dateTimePicker,
'decoratedText': ?decoratedText,
'image': ?image,
'selectionInput': ?selectionInput,
'textInput': ?textInput,
'textParagraph': ?textParagraph,
};
}