toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final buttons = this.buttons;
final image = this.image;
final keyValue = this.keyValue;
final textParagraph = this.textParagraph;
return {
'buttons': ?buttons,
'image': ?image,
'keyValue': ?keyValue,
'textParagraph': ?textParagraph,
};
}