toJson method

Map<String, dynamic> toJson()

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,
  };
}