toJson method

Map<String, dynamic> toJson()

Implementation

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