toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final layouts = this.layouts;
  final locale = this.locale;
  final masters = this.masters;
  final notesMaster = this.notesMaster;
  final pageSize = this.pageSize;
  final presentationId = this.presentationId;
  final revisionId = this.revisionId;
  final slides = this.slides;
  final title = this.title;
  return {
    'layouts': ?layouts,
    'locale': ?locale,
    'masters': ?masters,
    'notesMaster': ?notesMaster,
    'pageSize': ?pageSize,
    'presentationId': ?presentationId,
    'revisionId': ?revisionId,
    'slides': ?slides,
    'title': ?title,
  };
}