toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final description = this.description;
  final elementGroup = this.elementGroup;
  final image = this.image;
  final line = this.line;
  final objectId = this.objectId;
  final shape = this.shape;
  final sheetsChart = this.sheetsChart;
  final size = this.size;
  final speakerSpotlight = this.speakerSpotlight;
  final table = this.table;
  final title = this.title;
  final transform = this.transform;
  final video = this.video;
  final wordArt = this.wordArt;
  return {
    'description': ?description,
    'elementGroup': ?elementGroup,
    'image': ?image,
    'line': ?line,
    'objectId': ?objectId,
    'shape': ?shape,
    'sheetsChart': ?sheetsChart,
    'size': ?size,
    'speakerSpotlight': ?speakerSpotlight,
    'table': ?table,
    'title': ?title,
    'transform': ?transform,
    'video': ?video,
    'wordArt': ?wordArt,
  };
}