toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final buttons = this.buttons;
  final columnProperties = this.columnProperties;
  final image = this.image;
  final rows = this.rows;
  final subtitle = this.subtitle;
  final title = this.title;
  return {
    'buttons': ?buttons,
    'columnProperties': ?columnProperties,
    'image': ?image,
    'rows': ?rows,
    'subtitle': ?subtitle,
    'title': ?title,
  };
}